On 18.11.2016 14:11, Daniel Sun wrote:
Hi Jochen,I think !instanceof and !in are ok. The others... not sure here. Right now a*=b, which means !< is >=. And in this case I actually prefer >=.Sometimes we write code like "!(a > b)", now we can write "a !> b" instead, which is much close to our mind :)
"!>" vs ">="... No, I like the other more.. how about the boolean ones? "a !&& b" for a nand instead of "!(a && b)" or instead of "!a || !b" then there is also ~& and !& bye Jochen