diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-09-23 21:12:51 -0600 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2010-09-25 11:15:32 +0200 |
commit | 0c82b6df2d18075fd5ea8fb5ccbcac93b709e0f9 (patch) | |
tree | f00a59c2b76977a9151a5a9ba1104574fbed8332 /handy.h | |
parent | 25d1bb793c74dbeadfb79bec17165e4c3970f3ba (diff) | |
download | perl-0c82b6df2d18075fd5ea8fb5ccbcac93b709e0f9.tar.gz |
handy.h: alphabetize pod entries
There are a number of macros missing from the documentation. This helps
me figure out which ones.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -454,26 +454,26 @@ character set. Returns a boolean indicating whether the C C<char> is an alphabetic character in the platform's native character set. -=for apidoc Am|bool|isSPACE|char ch -Returns a boolean indicating whether the C C<char> is a -whitespace character in the platform's native character set. - =for apidoc Am|bool|isDIGIT|char ch Returns a boolean indicating whether the C C<char> is a digit in the platform's native character set. +=for apidoc Am|bool|isLOWER|char ch +Returns a boolean indicating whether the C C<char> is a +lowercase character in the platform's native character set. + =for apidoc Am|bool|isOCTAL|char ch Returns a boolean indicating whether the C C<char> is an octal digit, [0-7] in the platform's native character set. +=for apidoc Am|bool|isSPACE|char ch +Returns a boolean indicating whether the C C<char> is a +whitespace character in the platform's native character set. + =for apidoc Am|bool|isUPPER|char ch Returns a boolean indicating whether the C C<char> is an uppercase character in the platform's native character set. -=for apidoc Am|bool|isLOWER|char ch -Returns a boolean indicating whether the C C<char> is a -lowercase character in the platform's native character set. - =head1 Character case changing =for apidoc Am|char|toUPPER|char ch |