in reply to Re: Re: Re: Re: Incrementing a Hash Value
in thread Incrementing a Hash Value

Yep, there should be, or at least more specific docs on how things should act. Perl is awfully fuzzy about the behaviour of a lot of things. (Witness the fact that perl only recently nailed down the behaviour of numeric operations)

As a for example, in this:

$a = $a + $a++;
what should $a equal at the end? And if $a is tied or overloaded, what order should the tie/overload stuff be called in?