You know, \ and friends as xor is appealing to me.
There's no problem with \\ or \=, so that works. It's got nothing to
do with references, but unary | has nothing to do with anything.
Plus, it's parallel (er, perpendicular) to // as err, being logical
and all.
Just to clarify:
\ superpositional one
\\ logical xor
\= superpositional one-assignment
Also, a question about superpositions: Is
$x = 1 | 2 | 3
equivalent to
$x = 1 | 2
$x |= 3
or
$x = (1 | 2) | 3
or is there a difference at all? So the latter is either 3 or the
superposition 1 | 2. Does
$x == 1
still return true? I guess the root of my question is... do
superpositions search deep or shallow?
Luke