Help for this page

Select Code to Download


  1. or download this
    $param->isa('Foo')
    
  2. or download this
    UNIVERSAL::isa($param, 'Foo');
    
  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.