Help for this page

Select Code to Download


  1. or download this
    sub Clone2 {
        my $self = shift @_;
    ...
            "Matrix" => [ map{ [ @$_ ] } @$matrix ]
        );
    }
    
  2. or download this
    sub Clone3{
        my $self = shift;
    ...
            map{ [ @$_ ] } @{ $self->{Matrix} } ] 
        }, 'Matrix';
    }