Vector.op_LessThan Operator

Overload List

#SignatureDescription
1Boolean op_LessThan(TCplx ALeft, Vector ARight)Returns true, if ALeft is smaller from all elements in ARight.
2Boolean op_LessThan(Vector ALeft, TCplx ARight)Returns true, if Left is less than Right. Returns true, if all elements in ALeft are less than ARight.
3Boolean op_LessThan(Vector ALeft, Vector ARight)Returns true, if coresponding elements in ALeft are greater than coresponding elements in ARight.
4Boolean op_LessThan(Vector ALeft, Double ARight)Returns true, if all elements of ALeft are smaller from ARight.
5Boolean op_LessThan(Double ALeft, Vector ARight)Returns true, if ALeft is smaller from all elements in ARight.

Overload 1: Boolean op_LessThan(TCplx ALeft, Vector ARight)

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

#NameTypeDescription
1ALeftTCplxscalar
2ARightVector

Returns: Boolean

Overload 2: Boolean op_LessThan(Vector ALeft, TCplx ARight)

Returns true, if Left is less than Right. Returns true, if all elements in ALeft are less than ARight.

#NameTypeDescription
1ALeftVector
2ARightTCplxscalar

Returns: Boolean

Overload 3: Boolean op_LessThan(Vector ALeft, Vector ARight)

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

#NameTypeDescription
1ALeftVector
2ARightVector

Returns: Boolean

Overload 4: Boolean op_LessThan(Vector ALeft, Double ARight)

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

#NameTypeDescription
1ALeftVector
2ARightDoublescalar

Returns: Boolean

Overload 5: Boolean op_LessThan(Double ALeft, Vector ARight)

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

#NameTypeDescription
1ALeftDoublescalar
2ARightVector

Returns: Boolean