http://www.perlmonks.org?node_id=965810


in reply to Re^2: &&= vivify keys?
in thread &&= vivify keys?

Thanks for the clarification.

As for

3. If the scalar from the LHS is false, ...

I think that should be

    3. If the scalar from the LHS is true, ...

How else could a true value in the scalar ever change?

$ perl -E'$x=1; $x &&= 0; say $x' 0