.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Scalar::Util 3pm" .TH Scalar::Util 3pm "2018-11-01" "perl v5.28.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Scalar::Util \- A selection of general\-utility scalar subroutines .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 4 \& use Scalar::Util qw(blessed dualvar isdual readonly refaddr reftype \& tainted weaken isweak isvstring looks_like_number \& set_prototype); \& # and other useful utils appearing below .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\f(CW\*(C`Scalar::Util\*(C'\fR contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size would be so small that being individual extensions would be wasteful. .PP By default \f(CW\*(C`Scalar::Util\*(C'\fR does not export any subroutines. .SH "FUNCTIONS FOR REFERENCES" .IX Header "FUNCTIONS FOR REFERENCES" The following functions all perform some useful activity on reference values. .SS "blessed" .IX Subsection "blessed" .Vb 1 \& my $pkg = blessed( $ref ); .Ve .PP If \f(CW$ref\fR is a blessed reference, the name of the package that it is blessed into is returned. Otherwise \f(CW\*(C`undef\*(C'\fR is returned. .PP .Vb 2 \& $scalar = "foo"; \& $class = blessed $scalar; # undef \& \& $ref = []; \& $class = blessed $ref; # undef \& \& $obj = bless [], "Foo"; \& $class = blessed $obj; # "Foo" .Ve .PP Take care when using this function simply as a truth test (such as in \&\f(CW\*(C`if(blessed $ref)...\*(C'\fR) because the package name \f(CW"0"\fR is defined yet false. .SS "refaddr" .IX Subsection "refaddr" .Vb 1 \& my $addr = refaddr( $ref ); .Ve .PP If \f(CW$ref\fR is reference, the internal memory address of the referenced value is returned as a plain integer. Otherwise \f(CW\*(C`undef\*(C'\fR is returned. .PP .Vb 3 \& $addr = refaddr "string"; # undef \& $addr = refaddr \e$var; # eg 12345678 \& $addr = refaddr []; # eg 23456784 \& \& $obj = bless {}, "Foo"; \& $addr = refaddr $obj; # eg 88123488 .Ve .SS "reftype" .IX Subsection "reftype" .Vb 1 \& my $type = reftype( $ref ); .Ve .PP If \f(CW$ref\fR is a reference, the basic Perl type of the variable referenced is returned as a plain string (such as \f(CW\*(C`ARRAY\*(C'\fR or \f(CW\*(C`HASH\*(C'\fR). Otherwise \f(CW\*(C`undef\*(C'\fR is returned. .PP .Vb 3 \& $type = reftype "string"; # undef \& $type = reftype \e$var; # SCALAR \& $type = reftype []; # ARRAY \& \& $obj = bless {}, "Foo"; \& $type = reftype $obj; # HASH .Ve .SS "weaken" .IX Subsection "weaken" .Vb 1 \& weaken( $ref ); .Ve .PP The lvalue \f(CW$ref\fR will be turned into a weak reference. This means that it will not hold a reference count on the object it references. Also, when the reference count on that object reaches zero, the reference will be set to undef. This function mutates the lvalue passed as its argument and returns no value. .PP This is useful for keeping copies of references, but you don't want to prevent the object being DESTROY-ed at its usual time. .PP .Vb 6 \& { \& my $var; \& $ref = \e$var; \& weaken($ref); # Make $ref a weak reference \& } \& # $ref is now undef .Ve .PP Note that if you take a copy of a scalar with a weakened reference, the copy will be a strong reference. .PP .Vb 4 \& my $var; \& my $foo = \e$var; \& weaken($foo); # Make $foo a weak reference \& my $bar = $foo; # $bar is now a strong reference .Ve .PP This may be less obvious in other situations, such as \f(CW\*(C`grep()\*(C'\fR, for instance when grepping through a list of weakened references to objects that may have been destroyed already: .PP .Vb 1 \& @object = grep { defined } @object; .Ve .PP This will indeed remove all references to destroyed objects, but the remaining references to objects will be strong, causing the remaining objects to never be destroyed because there is now always a strong reference to them in the \f(CW@object\fR array. .SS "unweaken" .IX Subsection "unweaken" .Vb 1 \& unweaken( $ref ); .Ve .PP \&\fISince version 1.36.\fR .PP The lvalue \f(CW\*(C`REF\*(C'\fR will be turned from a weak reference back into a normal (strong) reference again. This function mutates the lvalue passed as its argument and returns no value. This undoes the action performed by \&\*(L"weaken\*(R". .PP This function is slightly neater and more convenient than the otherwise-equivalent code .PP .Vb 3 \& my $tmp = $REF; \& undef $REF; \& $REF = $tmp; .Ve .PP (because in particular, simply assigning a weak reference back to itself does not work to unweaken it; \f(CW\*(C`$REF = $REF\*(C'\fR does not work). .SS "isweak" .IX Subsection "isweak" .Vb 1 \& my $weak = isweak( $ref ); .Ve .PP Returns true if \f(CW$ref\fR is a weak reference. .PP .Vb 4 \& $ref = \e$foo; \& $weak = isweak($ref); # false \& weaken($ref); \& $weak = isweak($ref); # true .Ve .PP \&\fB\s-1NOTE\s0\fR: Copying a weak reference creates a normal, strong, reference. .PP .Vb 2 \& $copy = $ref; \& $weak = isweak($copy); # false .Ve .SH "OTHER FUNCTIONS" .IX Header "OTHER FUNCTIONS" .SS "dualvar" .IX Subsection "dualvar" .Vb 1 \& my $var = dualvar( $num, $string ); .Ve .PP Returns a scalar that has the value \f(CW$num\fR in a numeric context and the value \&\f(CW$string\fR in a string context. .PP .Vb 3 \& $foo = dualvar 10, "Hello"; \& $num = $foo + 2; # 12 \& $str = $foo . " world"; # Hello world .Ve .SS "isdual" .IX Subsection "isdual" .Vb 1 \& my $dual = isdual( $var ); .Ve .PP \&\fISince version 1.26.\fR .PP If \f(CW$var\fR is a scalar that has both numeric and string values, the result is true. .PP .Vb 2 \& $foo = dualvar 86, "Nix"; \& $dual = isdual($foo); # true .Ve .PP Note that a scalar can be made to have both string and numeric content through numeric operations: .PP .Vb 4 \& $foo = "10"; \& $dual = isdual($foo); # false \& $bar = $foo + 0; \& $dual = isdual($foo); # true .Ve .PP Note that although \f(CW$!\fR appears to be a dual-valued variable, it is actually implemented as a magical variable inside the interpreter: .PP .Vb 3 \& $! = 1; \& print("$!\en"); # "Operation not permitted" \& $dual = isdual($!); # false .Ve .PP You can capture its numeric and string content using: .PP .Vb 2 \& $err = dualvar $!, $!; \& $dual = isdual($err); # true .Ve .SS "isvstring" .IX Subsection "isvstring" .Vb 1 \& my $vstring = isvstring( $var ); .Ve .PP If \f(CW$var\fR is a scalar which was coded as a vstring, the result is true. .PP .Vb 3 \& $vs = v49.46.48; \& $fmt = isvstring($vs) ? "%vd" : "%s"; #true \& printf($fmt,$vs); .Ve .SS "looks_like_number" .IX Subsection "looks_like_number" .Vb 1 \& my $isnum = looks_like_number( $var ); .Ve .PP Returns true if perl thinks \f(CW$var\fR is a number. See \&\*(L"looks_like_number\*(R" in perlapi. .SS "openhandle" .IX Subsection "openhandle" .Vb 1 \& my $fh = openhandle( $fh ); .Ve .PP Returns \f(CW$fh\fR itself if \f(CW$fh\fR may be used as a filehandle and is open, or is is a tied handle. Otherwise \f(CW\*(C`undef\*(C'\fR is returned. .PP .Vb 4 \& $fh = openhandle(*STDIN); # \e*STDIN \& $fh = openhandle(\e*STDIN); # \e*STDIN \& $fh = openhandle(*NOTOPEN); # undef \& $fh = openhandle("scalar"); # undef .Ve .SS "readonly" .IX Subsection "readonly" .Vb 1 \& my $ro = readonly( $var ); .Ve .PP Returns true if \f(CW$var\fR is readonly. .PP .Vb 1 \& sub foo { readonly($_[0]) } \& \& $readonly = foo($bar); # false \& $readonly = foo(0); # true .Ve .SS "set_prototype" .IX Subsection "set_prototype" .Vb 1 \& my $code = set_prototype( $code, $prototype ); .Ve .PP Sets the prototype of the function given by the \f(CW$code\fR reference, or deletes it if \f(CW$prototype\fR is \f(CW\*(C`undef\*(C'\fR. Returns the \f(CW$code\fR reference itself. .PP .Vb 1 \& set_prototype \e&foo, \*(Aq$$\*(Aq; .Ve .SS "tainted" .IX Subsection "tainted" .Vb 1 \& my $t = tainted( $var ); .Ve .PP Return true if \f(CW$var\fR is tainted. .PP .Vb 2 \& $taint = tainted("constant"); # false \& $taint = tainted($ENV{PWD}); # true if running under \-T .Ve .SH "DIAGNOSTICS" .IX Header "DIAGNOSTICS" Module use may give one of the following errors during import. .IP "Weak references are not implemented in the version of perl" 4 .IX Item "Weak references are not implemented in the version of perl" The version of perl that you are using does not implement weak references, to use \*(L"isweak\*(R" or \*(L"weaken\*(R" you will need to use a newer release of perl. .IP "Vstrings are not implemented in the version of perl" 4 .IX Item "Vstrings are not implemented in the version of perl" The version of perl that you are using does not implement Vstrings, to use \&\*(L"isvstring\*(R" you will need to use a newer release of perl. .SH "KNOWN BUGS" .IX Header "KNOWN BUGS" There is a bug in perl5.6.0 with \s-1UV\s0's that are >= 1<<31. This will show up as tests 8 and 9 of dualvar.t failing .SH "SEE ALSO" .IX Header "SEE ALSO" List::Util .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (c) 1997\-2007 Graham Barr . All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. .PP Additionally \*(L"weaken\*(R" and \*(L"isweak\*(R" which are .PP Copyright (c) 1999 Tuomas J. Lukka . All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as perl itself. .PP Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. Copyright (C) 2014 cPanel Inc. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.