in reply to Re: push to array without copying
in thread push to array without copying
my %hash = ('a'=>'test'); print \$hash{'a'}."\n"; my @arr = delete $hash{'a'}; print \$arr[0]."\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: push to array without copying
by BrowserUk (Patriarch) on Nov 15, 2016 at 21:51 UTC | |
by chris212 (Scribe) on Nov 16, 2016 at 18:39 UTC |