summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-04-23 18:33:15 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 20:59:57 -0600
commitfbe13c605d92f73c90ff4702b76a97c5e12927a7 (patch)
tree774ab7f101ca4ec12b2a2180282a5274aa577dc2 /hv.c
parent3c0792e45ff76456148c62f3bbc4873623151f56 (diff)
downloadperl-fbe13c605d92f73c90ff4702b76a97c5e12927a7.tar.gz
perlapi, perlintern: Add L<> links to pod
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/hv.c b/hv.c
index 469221f592..8bde6b64ba 100644
--- a/hv.c
+++ b/hv.c
@@ -2295,7 +2295,7 @@ hek_eq_pvn_flags(pTHX_ const HEK *hek, const char* pv, const I32 pvlen, const U3
=for apidoc hv_ename_add
Adds a name to a stash's internal list of effective names. See
-C<hv_ename_delete>.
+C<L</hv_ename_delete>>.
This is called when a stash is assigned to a new location in the symbol
table.
@@ -2466,7 +2466,7 @@ hv_iternext is implemented as a macro in hv.h
=for apidoc hv_iternext
-Returns entries from a hash iterator. See C<hv_iterinit>.
+Returns entries from a hash iterator. See C<L</hv_iterinit>>.
You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
iterator currently points to, without losing your place or invalidating your
@@ -2478,7 +2478,8 @@ trigger the resource deallocation.
=for apidoc hv_iternext_flags
-Returns entries from a hash iterator. See C<hv_iterinit> and C<hv_iternext>.
+Returns entries from a hash iterator. See C<L</hv_iterinit>> and
+C<L</hv_iternext>>.
The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
set the placeholders keys (for restricted hashes) will be returned in addition
to normal keys. By default placeholders are automatically skipped over.
@@ -2644,7 +2645,7 @@ Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
=for apidoc hv_iterkey
Returns the key from the current position of the hash iterator. See
-C<hv_iterinit>.
+C<L</hv_iterinit>>.
=cut
*/
@@ -2672,7 +2673,7 @@ Perl_hv_iterkey(pTHX_ HE *entry, I32 *retlen)
Returns the key as an C<SV*> from the current position of the hash
iterator. The return value will always be a mortal copy of the key. Also
-see C<hv_iterinit>.
+see C<L</hv_iterinit>>.
=cut
*/
@@ -2689,7 +2690,7 @@ Perl_hv_iterkeysv(pTHX_ HE *entry)
=for apidoc hv_iterval
Returns the value from the current position of the hash iterator. See
-C<hv_iterkey>.
+C<L</hv_iterkey>>.
=cut
*/
@@ -2740,7 +2741,7 @@ Now a macro in hv.h
=for apidoc hv_magic
-Adds magic to a hash. See C<sv_magic>.
+Adds magic to a hash. See C<L</sv_magic>>.
=cut
*/