capitalization.3pm

Langue: en

Autres versions - même langue

Version: 2005-05-05 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

capitalization - no capitalization on method names

SYNOPSIS

   use XML::DOM;
   no capitalization 'XML::DOM';
 
   my $parser = XML::DOM::Parser->new;
 
   # no capitalization ..
   my $nodes = $parser->get_elements_by_tag_name("Foo");
 
   # this can be OK
   my $nodes = $parser->getElementsByTagName("Foo");
 
 

DESCRIPTION

capitalization.pm allows you to use familiar style on method naming.

RULES

Lower case character followed by upper case sequence would be splitted with _ and upper case sequence would be lower cased. Example: fooBar would be foo_bar.
All other upper case characters would be lower cased. Examples: FOOs would be foos, _Foo would be _foo.

CAVEATS

no capitalization __PACKAGE__;

If you want use capitalization pragma in module and add lower case API in the module itself, then you should use pragma after all subs are defined.

AUTHOR

Tatsuhiko Miyagawa <miyagawa@bulknews.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Symbol::Approx::Sub