diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-20 17:34:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-20 17:34:43 +0000 |
commit | 8f68c6c6e0b25189bbc5e293c61696110d14cfda (patch) | |
tree | f29411ca675ed9b8b2b98b075b665877fee15d71 /pod | |
parent | d2d73c3ec87c4412e7e67142070015e92c5112b0 (diff) | |
download | perl-8f68c6c6e0b25189bbc5e293c61696110d14cfda.tar.gz |
Regen headers.
p4raw-id: //depot/perl@10758
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 55 |
1 files changed, 23 insertions, 32 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 91d6b315fe..e62012ec03 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2098,22 +2098,22 @@ version which guarantees to evaluate sv only once. =for hackers Found in file sv.h -=item SvIVx +=item SvIVX -Coerces the given SV to an integer and returns it. Guarantees to evaluate -sv only once. Use the more efficent C<SvIV> otherwise. +Returns the raw value in the SV's IV slot, without checks or conversions. +Only use when you are sure SvIOK is true. See also C<SvIV()>. - IV SvIVx(SV* sv) + IV SvIVX(SV* sv) =for hackers Found in file sv.h -=item SvIVX +=item SvIVx -Returns the raw value in the SV's IV slot, without checks or conversions. -Only use when you are sure SvIOK is true. See also C<SvIV()>. +Coerces the given SV to an integer and returns it. Guarantees to evaluate +sv only once. Use the more efficent C<SvIV> otherwise. - IV SvIVX(SV* sv) + IV SvIVx(SV* sv) =for hackers Found in file sv.h @@ -2213,22 +2213,22 @@ which guarantees to evaluate sv only once. =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 -=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 @@ -2643,19 +2643,19 @@ false, defined or undefined. Does not handle 'get' magic. =for hackers Found in file sv.h -=item svtype +=item SvTYPE -An enum of flags for Perl types. These are found in the file B<sv.h> -in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. +Returns the type of the SV. See C<svtype>. + + svtype SvTYPE(SV* sv) =for hackers Found in file sv.h -=item SvTYPE - -Returns the type of the SV. See C<svtype>. +=item svtype - svtype SvTYPE(SV* sv) +An enum of flags for Perl types. These are found in the file B<sv.h> +in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. =for hackers Found in file sv.h @@ -3484,15 +3484,6 @@ instead. =for hackers Found in file sv.c -=item sv_realpath - -Wrap or emulate realpath(3). - - int sv_realpath(SV* sv, char *path, STRLEN len) - -=for hackers -Found in file util.c - =item sv_reftype Returns a string describing what the SV is a reference to. |