plug strictly private function leaks in API listing
authorGurusamy Sarathy <gsar@cpan.org>
Wed, 23 Sep 1998 10:06:13 +0000 (10:06 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Wed, 23 Sep 1998 10:06:13 +0000 (10:06 +0000)
p4raw-id: //depot/perl@1844

pod/perlguts.pod

index ec48594..769fd01 100644 (file)
@@ -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.