> After all, a pull is the other end of a push.
>
> Larry

So do we also get:

%hash.push(key => 'value'); # harder than %hash<<key>> = 'value';
%hash.unshift; # same as %hash.push
%hash.shift; # same as %hash.pull
%hash.pop; # same as %hash.pull

Which then begs if you can do

@array.push(3 => 'value'); # index 3 gets 'value' 
  # which is harder han @array[3] = 'value'

Paul Seamons

Reply via email to