Lingua-Identifier

 view release on metacpan or  search on metacpan

lib/Lingua/Identifier.pm  view on Meta::CPAN

53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
=head2 C<new>
 
Constructs a new Language Identification object.
 
    my $identifier = Lingua::Identifier->new();
 
=cut
 
sub new {
 
    return bless { languages => $classes }, __PACKAGE__;
}
 
=head2 C<languages>
 
Returns the list of codes for the active languages.
 
=cut
 
sub languages {
    my $self = shift;



( run in 0.315 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )