Help for this page

Select Code to Download


  1. or download this
    sub PUSH {
      my ($aref, @new) = @_;
    ...
      carp "first parameter must be an array reference" unless ref $aref e
    +q 'ARRAY';
      ...
    }
    
  2. or download this
    sub NAMED_PUSH {
      my(%args) = @_;
    ...
      carp "dest_aref parmeter must be an array reference" unless ref $arg
    +s{dest_aref} eq 'ARRAY';
      ...
    }