Searched refs:BinaryFnType (Results 1 – 3 of 3) sorted by relevance
283 class BinaryFnType: class311 add = BinaryFnType("add")312 sub = BinaryFnType("sub")313 mul = BinaryFnType("mul")314 max_signed = BinaryFnType("max_signed")315 min_signed = BinaryFnType("min_signed")316 max_unsigned = BinaryFnType("max_unsigned")317 min_unsigned = BinaryFnType("min_unsigned")381 def __init__(self, binary_fn: BinaryFnType): argument382 if not isinstance(binary_fn, BinaryFnType):[all …]
154 if not isinstance(fn, BinaryFnType):
1757 def _op_to_callable(op: _BinaryOp) -> lang.BinaryFnType: