Hacker News new | ask | show | jobs
by wjmao88 1570 days ago
<! is less than or not equal right? which is a strict subset of !=, since anything < by definition is !=
1 comments

> <! is less than or not equal right?

No, it is less-than-not, not less-than-or-not-equal-to.

That is <!x is the same as < (!x); if x is true-ish, it is “< false” and if x is false-ish it is “< true”.