Help for this page

Select Code to Download


  1. or download this
    
    my $obj = Some::Class->new();
    ...
    if ( $type eq 'HASH' )
      ...
    
  2. or download this
      $type = 'HASH' if $obj->isa('HASH');
      $type = 'ARRAY' if $obj->isa('ARRAY');