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