diff options
author | Simon Cozens <simon@netthink.co.uk> | 2001-07-08 14:24:34 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-08 14:24:44 +0000 |
commit | 8eceec63d7a4c39284b15f8b23984d5483bf6573 (patch) | |
tree | a651b63c57b14adb2c037e37e3be5200a4b27d9a /pod | |
parent | 246699ca5e3af04fcf52cf11c1535421dd986e59 (diff) | |
download | perl-8eceec63d7a4c39284b15f8b23984d5483bf6573.tar.gz |
Simplify yytoke()
Message-ID: <20010708132434.A9448@deep-dark-truthful-mirror>
Split out pending_ident().
p4raw-id: //depot/perl@11213
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index bd794e29c1..bee65f60fa 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1344,17 +1344,6 @@ SV is B<not> incremented. =for hackers Found in file sv.c -=item newSV - -Create a new null SV, or if len > 0, create a new empty SVt_PV type SV -with an initial PV allocation of len+1. Normally accessed via the C<NEWSV> -macro. - - SV* newSV(STRLEN len) - -=for hackers -Found in file sv.c - =item NEWSV Creates a new SV. A non-zero C<len> parameter indicates the number of @@ -1368,6 +1357,17 @@ C<id> is an integer id between 0 and 1299 (used to identify leaks). =for hackers Found in file handy.h +=item newSV + +Create a new null SV, or if len > 0, create a new empty SVt_PV type SV +with an initial PV allocation of len+1. Normally accessed via the C<NEWSV> +macro. + + SV* newSV(STRLEN len) + +=for hackers +Found in file sv.c + =item newSViv Creates a new SV and copies an integer into it. The reference count for the @@ -2234,22 +2234,22 @@ which guarantees to evaluate sv only once. =for hackers Found in file sv.h -=item SvNVX +=item SvNVx -Returns the raw value in the SV's NV slot, without checks or conversions. -Only use when you are sure SvNOK is true. See also C<SvNV()>. +Coerces the given SV to a double and returns it. Guarantees to evaluate +sv only once. Use the more efficent C<SvNV> otherwise. - NV SvNVX(SV* sv) + NV SvNVx(SV* sv) =for hackers Found in file sv.h -=item SvNVx +=item SvNVX -Coerces the given SV to a double and returns it. Guarantees to evaluate -sv only once. Use the more efficent C<SvNV> otherwise. +Returns the raw value in the SV's NV slot, without checks or conversions. +Only use when you are sure SvNOK is true. See also C<SvNV()>. - NV SvNVx(SV* sv) + NV SvNVX(SV* sv) =for hackers Found in file sv.h |