VectorInt.op_LessThanOrEqual Operator

Overload List

#SignatureDescription
1Boolean op_LessThanOrEqual(VectorInt ALeft, VectorInt ARight)Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight.
2Boolean op_LessThanOrEqual(VectorInt ALeft, Int32 ARight)Returns true, if all elements of ALeft are smaller or equal from ARight.
3Boolean op_LessThanOrEqual(Int32 ALeft, VectorInt ARight)Returns true, if ALeft is smaller or equal from all elements in ARight.

Overload 1: Boolean op_LessThanOrEqual(VectorInt ALeft, VectorInt ARight)

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

#NameTypeDescription
1ALeftVectorInt
2ARightVectorInt

Returns: Boolean

Overload 2: Boolean op_LessThanOrEqual(VectorInt ALeft, Int32 ARight)

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

#NameTypeDescription
1ALeftVectorInt
2ARightInt32

Returns: Boolean

Overload 3: Boolean op_LessThanOrEqual(Int32 ALeft, VectorInt ARight)

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

#NameTypeDescription
1ALeftInt32
2ARightVectorInt

Returns: Boolean