Help for this page

Select Code to Download


  1. or download this
    sub is_a {
        croak "is_a() expects a package name"
    ...
            return (ref $_[0] eq $type) ? 1:0;
        };
    }
    
  2. or download this
    use Scalar::Util qw( blessed );
    
    ...
            );
        };
    }