VectorInt.GreaterThanOrEqual Operator

Overload List

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

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

Returns true, if coresponding elements in ALeft are greater or equal from coresponding elements in ARight.

#NameTypeDescription
1ALeftVectorInt
2ARightVectorInt

Returns: Boolean

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

Returns true, if all elements of ALeft are greater or equal from ARight.

#NameTypeDescription
1ALeftVectorInt
2ARightInteger

Returns: Boolean

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

Returns true, if ALeft is greater or equal from all elements in ARight.

#NameTypeDescription
1ALeftInteger
2ARightVectorInt

Returns: Boolean