- or download this
UNIVERSAL::isa($array_ref,"ARRAY")
or die "Can't use anything but an array";
- or download this
my $array_ref=bless {},"ARRAY";
- or download this
eval{ ref($arrayref) and @$arrayref ? 1 : 1 }
or die "Must have a reference to something that behaves like an ARRA
+Y.\n".
"Failed to coerce '$arrayref': $@";