diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 15:31:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 15:31:50 +0000 |
commit | 438cc6089d922e42fd6635c1b8212ad034402745 (patch) | |
tree | b2ddf444b754ecf939209c93acccc8bf038450eb /pod | |
parent | 27dd2420592a44007a8d1534563f52fae745a50a (diff) | |
download | perl-438cc6089d922e42fd6635c1b8212ad034402745.tar.gz |
Retract the #8838 and #8840 for now because of
the DB_File tie problem.
p4raw-id: //depot/perl@8846
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 27 | ||||
-rw-r--r-- | pod/perlguts.pod | 3 |
2 files changed, 8 insertions, 22 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 7b6ad4a621..ef3a260ae8 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2368,19 +2368,19 @@ false, defined or undefined. Does not handle 'get' magic. =for hackers Found in file sv.h -=item SvTYPE - -Returns the type of the SV. See C<svtype>. +=item svtype - svtype SvTYPE(SV* sv) +An enum of flags for Perl types. These are found in the file B<sv.h> +in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. =for hackers Found in file sv.h -=item svtype +=item SvTYPE -An enum of flags for Perl types. These are found in the file B<sv.h> -in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. +Returns the type of the SV. See C<svtype>. + + svtype SvTYPE(SV* sv) =for hackers Found in file sv.h @@ -3011,19 +3011,6 @@ Note that C<sv_setref_pv> copies the pointer while this copies the string. =for hackers Found in file sv.c -=item sv_setref_uv - -Copies an unsigned integer into a new SV, optionally blessing the SV. The C<rv> -argument will be upgraded to an RV. That RV will be modified to point to -the new SV. The C<classname> argument indicates the package for the -blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV -will be returned and will have a reference count of 1. - - SV* sv_setref_uv(SV* rv, const char* classname, UV uv) - -=for hackers -Found in file sv.c - =item sv_setsv Copies the contents of the source SV C<ssv> into the destination SV C<dsv>. diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 557dbaf306..54d071596a 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -530,11 +530,10 @@ class. SV is returned. SV* newSVrv(SV* rv, const char* classname); -Copies integer, unsigned integer or double into an SV whose reference is C<rv>. SV is blessed +Copies 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 |