http://qs1969.pair.com?node_id=292466


in reply to Re: How do I determine the type of a reference?
in thread How do I determine the type of a reference?

Note that Scalar::Util::reftype behaves almost like the built-in ref, except when an object is passed.
use Scalar::Util 'reftype'; $a=\$b; print reftype($a),"\n"; #SCALAR print ref($a),"\n"; #SCALAR bless $a, "BOGUS"; print reftype($a),"\n"; #SCALAR print ref($a),"\n"; #BOGUS
  • Comment on Re: Answer: How do I tell what type of structure a given reference points to?
  • Download Code

Replies are listed 'Best First'.
Re: Re: Answer: How do I tell what type of structure a given reference points to?
by Mr. Muskrat (Canon) on Sep 18, 2003 at 17:57 UTC
    And that is exactly why I chose to use it!