This file is indexed.

/usr/share/perl5/Juman/KULM/MList.pm is in libjuman-perl 7.0-3.4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# $Id: MList.pm,v 1.2 2011/07/01 04:02:16 kawahara Exp $
package Juman::KULM::MList;
require 5.000;
use strict;

=head1 NAME

Juman::KULM::MList - KULM 互換 API

=head1 SYNOPSIS

このクラスをミキシングして使用する.

=head1 DESCRIPTION

C<KULM::Juman::MLMixin> 互換のメソッドを C<Juman::MList> クラスに追加
する.

=head1 METHODS

=over 4

=item mrph ( NUM )

第 I<NUM> 番目の形態素を返す.

=item mrph

全ての形態素のリストを返す.

=cut
sub mrph {
    my $this = shift;
    if( @_ ){
	( $this->mrph_list )[ @_ ];
    } else {
	$this->mrph_list;
    }
}

=item mrph_num

形態素列の長さを返す.

=cut
sub mrph_num {
    scalar( shift->mrph_list );
}

1;

=back

=head1 SEE ALSO

=over 4

=item *

L<Juman::MList>

=item *

L<KULM::Juman::MLMixin>

=back

=head1 AUTHOR

=over 4

=item
土屋 雅稔 <tsuchiya@pine.kuee.kyoto-u.ac.jp>

=cut

__END__
# Local Variables:
# mode: perl
# use-kuten-for-period: nil
# use-touten-for-comma: nil
# End: