diff options
author | Karl Williamson <khw@cpan.org> | 2019-08-04 18:03:03 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-09-02 21:52:10 -0600 |
commit | b7822a6dc596b40a42a5d599451fa677a9dfb98a (patch) | |
tree | 9819d3deb00f067f2d5820e80600cdaa79f14643 /sv.h | |
parent | d296fe142eff98bd12f32be29b6a9a6e0dfe7ad7 (diff) | |
download | perl-b7822a6dc596b40a42a5d599451fa677a9dfb98a.tar.gz |
perlapi: Document SvUVXx()
I'm doing so because Devel::PPPort provides this function.
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -766,6 +766,9 @@ Only use when you are sure C<SvIOK> is true. See also C<L</SvIV>>. Returns the raw value in the SV's UV slot, without checks or conversions. Only use when you are sure C<SvIOK> is true. See also C<L</SvUV>>. +=for apidoc AmD|UV|SvUVXx|SV* sv +This is an unnecessary synonym for L</SvUVX> + =for apidoc Am|NV|SvNVX|SV* sv Returns the raw value in the SV's NV slot, without checks or conversions. Only use when you are sure C<SvNOK> is true. See also C<L</SvNV>>. |