summaryrefslogtreecommitdiff
path: root/pod/perlguts.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-23 10:06:13 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-23 10:06:13 +0000
commit54fbcc6e8ef8d379545ca2bc110f2f19a7c73715 (patch)
tree74d10f11546109e554e8224b2059b7e599a319f1 /pod/perlguts.pod
parentf0b8d0437f727b080ebeb6e6cf5fb3b9c590ce54 (diff)
downloadperl-54fbcc6e8ef8d379545ca2bc110f2f19a7c73715.tar.gz
plug strictly private function leaks in API listing
p4raw-id: //depot/perl@1844
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r--pod/perlguts.pod16
1 files changed, 0 insertions, 16 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index ec485942d8..769fd0164c 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -1895,15 +1895,6 @@ Clears a hash, making it empty.
void hv_clear (HV* tb)
-=item hv_delayfree_ent
-
-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>
-and C<hv_free_ent>.
-
- void hv_delayfree_ent (HV* hv, HE* entry)
-
=item hv_delete
Deletes a key/value pair in the hash. The value SV is removed from the hash
@@ -1963,13 +1954,6 @@ information on how to use this function on tied hashes.
HE* hv_fetch_ent (HV* tb, SV* key, I32 lval, U32 hash)
-=item hv_free_ent
-
-Releases a hash entry, such as while iterating though the hash. See
-C<hv_iternext> and C<hv_delayfree_ent>.
-
- void hv_free_ent (HV* hv, HE* entry)
-
=item hv_iterinit
Prepares a starting point to traverse a hash table.