Nathan Wiger wrote:
> 
> Truthfully, I've always liked the <>'s (and personally don't think we need a
> qw alternative), so I'd rather we stay with:
> 
>    $a = <$b>;   # same as next $b or $b.next


we could generalize the other direction and have angles be a standard
shortcut for the "next" method:

        while (($k,$v) = each %sack){
                ...
                ($k,$v) = <%sack> or last;
                ...
        };

what else _has_ iterators?

Reply via email to