in reply to Re^2: check for wantarray?
in thread check for wantarray?
Returns a non-empty string if EXPR is a reference, the empty string otherwise. If EXPR is not specified, $_ will be used. The value returned depends on the type of thing the reference is a reference to. Builtin types include:ref EXPR refIf the referenced object has been blessed into a package, then that package name is returned instead. You can think of ref as a typeof operator.
- SCALAR
- ARRAY
- HASH
- CODE
- REF
- GLOB
- LVALUE
CountZero
A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: check for wantarray?
by LanX (Saint) on Dec 29, 2008 at 13:29 UTC | |
by CountZero (Bishop) on Dec 29, 2008 at 17:14 UTC |