diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-05 21:16:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-05 21:16:01 +0000 |
commit | e331fc526c631ec7738ea465ef21f191ba7f166b (patch) | |
tree | 2ece93d668fb0b5368e430866a03ec18ff3e0f53 /sv.h | |
parent | 1c846c1f6d96d2ca4dfccdcfc0ff050c1474993e (diff) | |
download | perl-e331fc526c631ec7738ea465ef21f191ba7f166b.tar.gz |
Document the SvIOK_.*UV().
p4raw-id: //depot/perl@7017
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -442,6 +442,15 @@ Unsets the IV status of an SV. =for apidoc Am|void|SvIOK_only|SV* sv Tells an SV that it is an integer and disables all other OK bits. +=for apidoc Am|void|SvIOK_only_UV|SV* sv +Tells and SV that it is an unsigned integer and disables all other OK bits. + +=for apidoc Am|void|SvIOK_UV|SV* sv +Returns a boolean indicating whether the SV contains an unsigned integer. + +=for apidoc Am|void|SvIOK_notUV|SV* sv +Returns a boolean indicating whether the SV contains an signed integer. + =for apidoc Am|bool|SvNOK|SV* sv Returns a boolean indicating whether the SV contains a double. |