CoopVec<T, int N>.lessThan¶
Description¶
Compares two cooperative vectors lexicographically.
Signature¶
bool CoopVec<T, int N>.lessThan(CoopVec<T, N> other) where T : __BuiltinArithmeticType;
Parameters¶
other : CoopVec<T, N>¶
The cooperative vector to compare against.
Return value¶
True if this vector is lexicographically less than the other vector.
Remarks¶
This function exists only to conform to IComparable. For cooperative vectors, lexicographical comparison has limited practical use since the vectors are meant for parallel computation rather than ordering.