diff options
author | Jeff Okamoto <okamoto@hpcc123.corp.hp.com> | 1997-01-17 13:17:43 -0800 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-01-25 15:58:00 +1200 |
commit | e5581bf40bb636dd8a7bf7affa9b3ba34f33ec40 (patch) | |
tree | ce635ada939a86c2523074fbd6647d01813b7481 | |
parent | 46bb10fba9ec17ca57553b6c5816cf9c4d1a5743 (diff) | |
download | perl-e5581bf40bb636dd8a7bf7affa9b3ba34f33ec40.tar.gz |
Perlguts version 30
Subject: Re: Perl 5.003_22 is available
p5p-msgid: <199701172118.AA116655938@hpcc123.corp.hp.com>
private-msgid: <199701172117.AA116515863@hpcc123.corp.hp.com>
-rw-r--r-- | pod/perlguts.pod | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 55014fb404..a7b11c6e87 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1233,12 +1233,9 @@ Returns a pointer to the stash for a specified package. See C<gv_stashpv>. HV* gv_stashsv _((SV* sv, I32 create)); -=item he_free +=item GvSV -Releases a hash entry, such as while iterating though the hash. See -C<hv_iternext>. - - void he_free _((HV* hv, HE* hent)); +Return the SV from the GV. =item he_delayfree @@ -1246,7 +1243,14 @@ Releases a hash entry, such as while iterating though the hash, but delays actual freeing of key and value until the end of the current statement (or thereabouts) with C<sv_2mortal>. See C<hv_iternext>. - void he_delayfree _((HV* hv, HE* hent)); + void he_delayfree _((HV* hv, HE* hent)); + +=item he_free + +Releases a hash entry, such as while iterating though the hash. See +C<hv_iternext>. + + void he_free _((HV* hv, HE* hent)); =item hv_clear @@ -2597,4 +2601,4 @@ API Listing by Dean Roehrich <roehrich@cray.com>. =head1 DATE -Version 28.1: 1997/1/13 +Version 30: 1997/1/17 |