Agree with you that named bitwise operators look h...
# stdlib
m
Agree with you that named bitwise operators look horrid @jw, I think it all becomes less readable. However it’s something that is used sparsely in codebases so it’s arguable wether that justifies it’s own operator. Especially when I think it’s more important to avoid issues like
a || b
vs
a | b
(with
a
and
b
being booleans) where one is short-circuit and the other is not.