diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-03-27 22:37:35 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-29 20:21:11 +0000 |
commit | 19dbb8f173af2c7e80a0837871d15e631aacc74c (patch) | |
tree | 8915a2b2d729657ad28aaadbfb856fcde281b002 /sv.h | |
parent | 700a71f52a8b687cd8507393838281605745411c (diff) | |
download | perl-19dbb8f173af2c7e80a0837871d15e631aacc74c.tar.gz |
[DOCPATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
Message-ID: <20030327223735.GD277@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@19079
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -920,6 +920,14 @@ Like C<SvPV>, but converts sv to byte representation first if necessary. Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte> otherwise. +=for apidoc Am|bool|SvIsCOW|SV* sv +Returns a boolean indicating whether the SV is Copy-On-Write. (either shared +hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for +COW) + +=for apidoc Am|bool|SvIsCOW_shared_hash|SV* sv +Returns a boolean indicating whether the SV is Copy-On-Write shared hash key +scalar. =cut */ |