| 1: | func @lt = <{T: Type}> (lhs: T, rhs: T) -> Bool; |
Calculate less than.
T: type of arguments and output - must be primitive (excluding Void, RawPtr, and TypeID), vector of primitive (excluding Void, RawPtr, and TypeID), or pointer.
lhs: left-hand-side value of operation
rhs: right-hand-side value of operation
Returns true if lhs is less than rhs
(TODO)