show/hide this revision's text 2 deleted 2 characters in body

And my first thought on this was: "Objects in perl Perl are always hash refs.. , so what the hack?"

But, Scalar::Util::reftype is the answer. Thanks for putting the question here.

Here is a code snippet to prove this.. (in case it is of any use to anyone).

$> perl -e 'use strict; use warnings "all"; my $x = [1]; bless ($x, "ABC::Def"); use Data::Dumper; print Dumper $x; print ref($x) . "\n"; use Scalar::Util "reftype"; print reftype($x) . "\n"'\n"'`

Output:

$VAR1 = bless( [
                 1
               ], 'ABC::Def' );
ABC::Def
ARRAY
show/hide this revision's text 1

And my first thought on this was: "Objects in perl are always hash refs .. so what the hack?"

But, Scalar::Util::reftype is the answer. Thanks for putting the question here.

Here is a code snippet to prove this.. (in case it is of any use to anyone).

$> perl -e 'use strict; use warnings "all"; my $x = [1]; bless ($x, "ABC::Def"); use Data::Dumper; print Dumper $x; print ref($x) . "\n"; use Scalar::Util "reftype"; print reftype($x) . "\n"'

Output:

$VAR1 = bless( [ 1 ], 'ABC::Def' ); ABC::Def ARRAY