Operators#

And

Return the element-by-element logical X AND Y.

Not

Return NOT of each element of X.

Or

Return the element-by-element logical X OR Y.

xor

Pair each elements in X and Y to perform the "exclusive or" operation.

bitAnd

Return the result of the bitAnd operation.

bitOr

Return the result of the bitOr operation.

bitXor

Return the result of the bitXOr operation.

eq

If neither X nor Y is a set, return the element-by-element comparison of X and Y.

ge

If neither X nor Y is a set, return the element-by-element comparison of X>=Y.

le

If neither X nor Y is a set, return the element-by-element comparison of X<=Y.

gt

If neither X nor Y is a set, return the element-by-element comparison of X>Y.

lt

If neither X nor Y is a set, return the element-by-element comparison of X<Y.

ne

If neither X nor Y is a set, conduct the element-by-element comparison of X and Y; return 1 if the elements in X and Y are not the same.

In

If Y is a scalar:

between

Check if each element of X is between the pair indicated by Y (both boundaries are inclusive).

eqFloat

Return the element-by-element comparison of X and Y with the given precision.

eqObj

Check if the data types and values of two objects are identical.

eqPercent

Check element-wise equality of two inputs X and Y are equal within the specified toleranceLevel.