| 1: | func @neq = <{T: Type}> (lhs: T, rhs: T) -> Bool; |
Calculate non-equality.
T: type of arguments and output - must be primitive (excluding Void), vector of primitive (excluding Void), or pointer.
lhs: left-hand-side value of operation
rhs: right-hand-side value of operation
Returns true if values are not equal
(TODO)
| @eq | Calculate equality |