Help for this page

Select Code to Download


  1. or download this
    use overload '""' => \&_stringify;
    sub _stringify {
        my $this = shift;           # Actually operator arg, NOT a "this"
        $this->row->ID;
    };
    
  2. or download this
    $logger->trace("Zep is " . ref($zep) . " stringifies as $zep" . " but 
    +_stringify returns " . $zep->_stringify );