VectorInt.LessThan Operator

Overload List

#SignatureDescription
1class operator LessThan(const ALeft: VectorInt; const ARight: VectorInt): Boolean;Returns true, if coresponding elements in ALeft are greater than coresponding elements in ARight.
2class operator LessThan(const ALeft: VectorInt; const ARight: Integer): Boolean;Returns true, if all elements of ALeft are smaller from ARight.
3class operator LessThan(const ALeft: Integer; const ARight: VectorInt): Boolean;Returns true, if ALeft is smaller from all elements in ARight.

Overload 1: class operator LessThan(const ALeft: VectorInt; const ARight: VectorInt): Boolean;

Returns true, if coresponding elements in ALeft are greater than coresponding elements in ARight.

#NameTypeDescription
1ALeftVectorInt
2ARightVectorInt

Returns: Boolean

Overload 2: class operator LessThan(const ALeft: VectorInt; const ARight: Integer): Boolean;

Returns true, if all elements of ALeft are smaller from ARight.

#NameTypeDescription
1ALeftVectorInt
2ARightInteger

Returns: Boolean

Overload 3: class operator LessThan(const ALeft: Integer; const ARight: VectorInt): Boolean;

Returns true, if ALeft is smaller from all elements in ARight.

#NameTypeDescription
1ALeftInteger
2ARightVectorInt

Returns: Boolean