summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-09-05 21:16:01 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-09-05 21:16:01 +0000
commite331fc526c631ec7738ea465ef21f191ba7f166b (patch)
tree2ece93d668fb0b5368e430866a03ec18ff3e0f53 /sv.h
parent1c846c1f6d96d2ca4dfccdcfc0ff050c1474993e (diff)
downloadperl-e331fc526c631ec7738ea465ef21f191ba7f166b.tar.gz
Document the SvIOK_.*UV().
p4raw-id: //depot/perl@7017
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/sv.h b/sv.h
index 5500d2b46b..b91cc5fed1 100644
--- a/sv.h
+++ b/sv.h
@@ -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.