asc.language.tile.binary_ops.less_equal
- asc.language.tile.binary_ops.less_equal(input: Tile | PlainValue | int | float, other: Tile | PlainValue | int | float) Tile
Computes the element-wise ‘less or equal’ comparison of
inputandother.- Parameters:
input – the left operand (tile or scalar)
other – the right operand (tile or scalar)
- Returns:
the result of ‘less or equal’ comparison
- Return type:
Note
At least one of input operands must be
Tile.This function can also be called as a member function on
Tile, asx.__le__(...)instead ofless_equal(x, ...).