I want to check if a $thing
is an object blessed as a package (e.g. __PACKAGE__
). One idea is:
use Scalar::Util qw(blessed);
defined blessed $thing && blessed $thing eq __PACKAGE__
Is there a better and/or more elegant way that avoids checking if the return value of blessed
is defined?
Another approach is (blessed $thing or '') eq __PACKAGE__
, but I'm not sure if a package can legally be empty or not.
Also, based on Perl Monks, UNIVERSAL::isa($thing, __PACKAGE__)
is another way, but that approach is permissive of more things.