diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-01-20 13:21:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-01-20 13:21:14 +0000 |
commit | df344c0f087fe584f089183b340ab3608c6859f9 (patch) | |
tree | f3427fe75e2384e03b717e0eef6f31ac1256e73e /pod/perlapi.pod | |
parent | 22469dce3421188b4dd09799e1b6e780001201ca (diff) | |
download | perl-df344c0f087fe584f089183b340ab3608c6859f9.tar.gz |
Run regen.pl and pod/buildtoc --build-all
p4raw-id: //depot/perl@23836
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index a1ddb13f06..f2fa8d9b62 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -3139,22 +3139,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 efficient 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 efficient C<SvIV> otherwise. - IV SvIVX(SV* sv) + IV SvIVx(SV* sv) =for hackers Found in file sv.h @@ -3473,21 +3473,21 @@ Like C<SvPV_nolen>, but converts sv to utf8 first if necessary. =for hackers Found in file sv.h -=item SvPVx +=item SvPVX -A version of C<SvPV> which guarantees to evaluate sv only once. +Returns a pointer to the physical string in the SV. The SV must contain a +string. - char* SvPVx(SV* sv, STRLEN len) + char* SvPVX(SV* sv) =for hackers Found in file sv.h -=item SvPVX +=item SvPVx -Returns a pointer to the physical string in the SV. The SV must contain a -string. +A version of C<SvPV> which guarantees to evaluate sv only once. - char* SvPVX(SV* sv) + char* SvPVx(SV* sv, STRLEN len) =for hackers Found in file sv.h |