diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-01-24 13:14:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-01-24 13:14:21 +0000 |
commit | 27bcc0a7e6b15b7b0d6f632d5f31918abd005ef4 (patch) | |
tree | 8913aaf5a774174e598e6054220156d83eeb467b /pod | |
parent | 141db969318ed8140b5af01514c043bc7f710dc3 (diff) | |
download | perl-27bcc0a7e6b15b7b0d6f632d5f31918abd005ef4.tar.gz |
Revert change 23843.
(See discussion for bug [perl #31924])
p4raw-id: //depot/perl@23873
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 8da393e4e9..f2fa8d9b62 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -1196,25 +1196,6 @@ information on how to use this function on tied hashes. =for hackers Found in file hv.c -=item hv_fetch_flags - -Returns the SV which corresponds to the specified key in the hash. -See C<hv_fetch>. -The C<flags> value will normally be zero; if HV_FETCH_WANTPLACEHOLDERS is -set then placeholders keys (for restricted hashes) will be returned in addition -to normal keys. By default placeholders are automatically skipped over. -Currently a placeholder is implemented with a value that is -C<&Perl_sv_placeholder>. Note that the implementation of placeholders and -restricted hashes may change. - -NOTE: this function is experimental and may change or be -removed without notice. - - SV** hv_fetch_flags(HV* tb, const char* key, I32 klen, I32 lval, I32 flags) - -=for hackers -Found in file hv.c - =item hv_iterinit Prepares a starting point to traverse a hash table. Returns the number of |