Help for this page

Select Code to Download


  1. or download this
    sub isa
    {
    ...
        return 0 if $is_builtin{$type};
        return $self->SUPER::isa($type);
    }
    
  2. or download this
    sub can_stringify
    {
    ...
        return 0 unless blessed $thingy;
        return $thingy->can('STRINGIFY');
    }
    
  3. or download this
    if (UNIVERSAL::can($x, 'can') && $x->can('(""'))
    {
        # Do stuff here
    }