Help for this page

Select Code to Download


  1. or download this
    
     # Done with `auto_deref => 1`
    ...
     # assuming you mean $arrayRef, this already works so long as the type
    + is ArrayRef
     # or, a parent thereof.
     $obj->prop($array);
    
  2. or download this
    sub foo_writer {
     if ( length @_ > 1 ) {
    ...
      $_[0];
     }
    }