MatrixInt.GreaterThanOrEqual Operator

Overload List

#SignatureDescription
1class operator GreaterThanOrEqual(const ALeft: MatrixInt; const ARight: MatrixInt): Boolean;Returns true, if coresponding elements in ALeft are greater or equal from coresponding elements in ARight.
2class operator GreaterThanOrEqual(const ALeft: MatrixInt; 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: MatrixInt): Boolean;Returns true, if ALeft is greater or equal from all elements in ARight.

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

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

#NameTypeDescription
1ALeftMatrixInt
2ARightMatrixInt

Returns: Boolean

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

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

#NameTypeDescription
1ALeftMatrixInt
2ARightInteger

Returns: Boolean

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

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

#NameTypeDescription
1ALeftInteger
2ARightMatrixInt

Returns: Boolean