summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-08-30 14:11:49 -0600
committerKarl Williamson <khw@cpan.org>2019-09-02 21:52:11 -0600
commitceea512dd6ecd4090f4f420c42f0fec43d6591e2 (patch)
treeb38a722e9b5a28fe49282cd45ebad904a6765c40 /numeric.c
parent7dfc378e24c21467deb8f13256031c2c6ff63efd (diff)
downloadperl-ceea512dd6ecd4090f4f420c42f0fec43d6591e2.tar.gz
numeric.c: Note that flag bit names are documented
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/numeric.c b/numeric.c
index fae2eb3c6d..6f3fd3484a 100644
--- a/numeric.c
+++ b/numeric.c
@@ -227,6 +227,12 @@ C<PERL_SCAN_DISALLOW_PREFIX> is set in C<*flags> on entry. If
C<PERL_SCAN_ALLOW_UNDERSCORES> is set in C<*flags> then the binary
number may use C<"_"> characters to separate digits.
+=for apidoc Amnh||PERL_SCAN_ALLOW_UNDERSCORES
+=for apidoc Amnh||PERL_SCAN_DISALLOW_PREFIX
+=for apidoc Amnh||PERL_SCAN_GREATER_THAN_UV_MAX
+=for apidoc Amnh||PERL_SCAN_SILENT_ILLDIGIT
+=for apidoc Amnh||PERL_SCAN_TRAILING
+
=cut
Not documented yet because experimental is C<PERL_SCAN_SILENT_NON_PORTABLE
@@ -678,6 +684,13 @@ If an infinity or a not-a-number is recognized, C<*sp> will point to
one byte past the end of the recognized string. If the recognition fails,
zero is returned, and C<*sp> will not move.
+=for apidoc Amn|bool|IS_NUMBER_GREATER_THAN_UV_MAX
+=for apidoc Amn|bool|IS_NUMBER_INFINITY
+=for apidoc Amn|bool|IS_NUMBER_IN_UV
+=for apidoc Amn|bool|IS_NUMBER_NAN
+=for apidoc Amn|bool|IS_NUMBER_NEG
+=for apidoc Amn|bool|IS_NUMBER_NOT_INT
+
=cut
*/