diff options
author | Shlomi Fish <shlomif@iglu.org.il> | 2011-07-18 22:07:28 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-18 22:09:18 -0700 |
commit | f0b90de1127cfd7f88a667aff4553d624d6e451d (patch) | |
tree | f1d08770b909c164ddcc9bcf5945cf47caadfe41 /cv.h | |
parent | 1fcb0052e32fe8c260e83b2ece033e2ca2f30a92 (diff) | |
download | perl-f0b90de1127cfd7f88a667aff4553d624d6e451d.tar.gz |
perlapi.pod Enhancements
This is a patch to enhance perlapi.pod by providing Perl equivalents and
clarifying documentation where appropriate.
Diffstat (limited to 'cv.h')
-rw-r--r-- | cv.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -26,8 +26,13 @@ Null CV pointer. =head1 CV Manipulation Functions +This section documents functions to manipulate CVs which are code-values, +or subroutines. For more information, see L<perlguts>. + =for apidoc Am|HV*|CvSTASH|CV* cv -Returns the stash of the CV. +Returns the stash of the CV. A stash is the symbol table hash, containing +the package-scoped variables in the package where the subroutine was defined. +For more information, see L<perlguts>. =cut */ |