in reply to Re: Testing package membership
in thread Testing package membership
Thanks to GrandFather and moritz.package Util::Stuff::abc; sub attrib1 { 1 } sub attrib2 { 10 } ... eval { if ($symref->can('attrib1')) { ... $symref->attrib1 is OK ... }};
|
|---|