They gave me the link, and I want to know its type. To this end, "ref" works on indisputable links, but on blessed links it returns the package name was blessed.
$a=[]; print ref $a;
ARRAY
bless $a, 'mytype'; print ref $a;
Mytype
How can I get the type?
source share