summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-26 17:47:31 -0600
committerKarl Williamson <khw@cpan.org>2020-09-04 16:13:25 -0600
commit51b56f5c7c7e109a2c53226c83c2d324801d4f9b (patch)
tree6fba1874921dc4fbec86d41614083856335c42cb /hv.c
parent70b05c7cee1d4db8aa1fee6424603ecb21eac423 (diff)
downloadperl-51b56f5c7c7e109a2c53226c83c2d324801d4f9b.tar.gz
Reorganize perlapi
This uses a new organization of sections that I came up with. I asked for comments on p5p, but there were none.
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index e44e75e81e..f4c819cb80 100644
--- a/hv.c
+++ b/hv.c
@@ -17,7 +17,7 @@
*/
/*
-=head1 Hash Manipulation Functions
+=head1 HV Handling
A HV structure represents a Perl hash. It consists mainly of an array
of pointers, each of which points to a linked list of HE structures. The
array is indexed by the hash function of the key, so each linked list
@@ -3731,6 +3731,7 @@ Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he)
}
/*
+=for apidoc_section COP Hint Hashes
=for apidoc cop_fetch_label
Returns the label attached to a cop, and stores its length in bytes into
@@ -3810,6 +3811,7 @@ Perl_cop_store_label(pTHX_ COP *const cop, const char *label, STRLEN len,
}
/*
+=for apidoc_section HV Handling
=for apidoc hv_assert
Check that a hash is in an internally consistent state.