Help for this page

Select Code to Download


  1. or download this
    @copy = @tied;
    
  2. or download this
    my $length = $#tied;
    @copy[0..$length] = @tied[0..$length];
    
  3. or download this
    @copy = ();
    push @copy, $_ for @tied;
    
  4. or download this
    sub FETCHALL {
        $self = shift;
        map { $self->FETCH[$_] } 0..$self->FETCHSIZE;
    }