From: Gurusamy Sarathy Date: Wed, 23 Sep 1998 10:06:13 +0000 (+0000) Subject: plug strictly private function leaks in API listing X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=54fbcc6e8ef8d379545ca2bc110f2f19a7c73715;p=p5sagit%2Fp5-mst-13.2.git plug strictly private function leaks in API listing p4raw-id: //depot/perl@1844 --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index ec48594..769fd01 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. See C -and C. - - 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 and C. - - void hv_free_ent (HV* hv, HE* entry) - =item hv_iterinit Prepares a starting point to traverse a hash table.