Help for this page

Select Code to Download


  1. or download this
      my $isa = $class . "::ISA";   # Sym ref "Foo::ISA"
      no strict "refs";
      $isa = \ @$isa;               # Real ref \ @Foo::ISA
    
  2. or download this
      $isa = *$isa{ARRAY};