diff options
author | Doug MacEachern <dougm@covalent.net> | 2001-02-18 06:49:33 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-19 00:23:41 +0000 |
commit | 4030fe4ad6ddcf55e0341ef163ebb1419014d565 (patch) | |
tree | ba61b1f08997a95e92a0dcd5a3977822918cc676 /pod/perlguts.pod | |
parent | b8c8cfe2143ccc131c4ba2522f7e9a4aef4adb7a (diff) | |
download | perl-4030fe4ad6ddcf55e0341ef163ebb1419014d565.tar.gz |
[patch] add sv_setref_uv
Message-ID: <Pine.LNX.4.21.0102181448290.10021-100000@mako.covalent.net>
p4raw-id: //depot/perl@8840
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 54d071596a..557dbaf306 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -530,10 +530,11 @@ class. SV is returned. SV* newSVrv(SV* rv, const char* classname); -Copies integer or double into an SV whose reference is C<rv>. SV is blessed +Copies integer, unsigned integer or double into an SV whose reference is C<rv>. SV is blessed if C<classname> is non-null. SV* sv_setref_iv(SV* rv, const char* classname, IV iv); + SV* sv_setref_uv(SV* rv, const char* classname, UV uv); SV* sv_setref_nv(SV* rv, const char* classname, NV iv); Copies the pointer value (I<the address, not the string!>) into an SV whose |