From ecae49c0159ae97ce603c12b29343825a18c1cf1 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 9 Aug 2003 01:35:36 +0100 Subject: Re: Storable Error Message-ID: <20030809003535.C20130@plum.flirble.org> p4raw-id: //depot/perl@21729 --- pod/perlapi.pod | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'pod/perlapi.pod') 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, C. =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 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. - 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. +Coerces the given SV to an integer and returns it. Guarantees to evaluate +sv only once. Use the more efficient C otherwise. - IV SvIVX(SV* sv) + IV SvIVx(SV* sv) =for hackers Found in file sv.h -- cgit v1.2.1