Help for this page

Select Code to Download


  1. or download this
    $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE )
    
  2. or download this
       use UNIVERSAL qw( isa ) ;
       $yes = isa $h, "HASH";
       $yes = isa "Foo", "Bar";
    
  3. or download this
    These subroutines should not be imported via use UNIVERSAL qw(...). 
    If you want simple local access to them you can do
    ...
      *isa = \&UNIVERSAL::isa;
    
    to import isa into your package.