diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-21 14:04:41 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-21 14:04:41 +0000 |
commit | e1c57cef4ab5e7ff7a568c339d671a16148368b3 (patch) | |
tree | 18e26650d309b5d9d70ce0add3e58a862c39f158 /pod/perlguts.pod | |
parent | 93dfd55ec6c7f4ad52d53a9c024a8ac903bff254 (diff) | |
download | perl-e1c57cef4ab5e7ff7a568c339d671a16148368b3.tar.gz |
Put back the #8840, it was innocent.
p4raw-id: //depot/perl@8870
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 |