diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-08-09 01:35:36 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-11-15 14:39:00 +0000 |
commit | ecae49c0159ae97ce603c12b29343825a18c1cf1 (patch) | |
tree | 8eb613c65db9c76c9409a2b79d6310981705ea87 /pod/perlapi.pod | |
parent | b4bb75a86da28602798e256d17a5b953131d0cfb (diff) | |
download | perl-ecae49c0159ae97ce603c12b29343825a18c1cf1.tar.gz |
Re: Storable Error
Message-ID: <20030809003535.C20130@plum.flirble.org>
p4raw-id: //depot/perl@21729
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index f111d0e627..44e83be01f 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1067,6 +1067,15 @@ Returns the package name of a stash. See C<SvSTASH>, C<CvSTASH>. =for hackers Found in file hv.h +=item hv_assert + +Check that a hash is in an internally consistent state. + + void hv_assert(HV* tb) + +=for hackers +Found in file hv.c + =item hv_clear Clears a hash, making it empty. @@ -2870,22 +2879,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 |