Ty.BinopSourcetype t = | AddAddition.
*)| SubSubtraction.
*)| MulMultiplication.
*)| DivDivision.
*)| DivUUnsigned division.
*)| RemRemainder.
*)| RemUUnsigned remainder.
*)| ShlShift left.
*)| ShrAArithmetic shift right.
*)| ShrLLogical shift right.
*)| AndLogical or bitwise AND.
*)| OrLogical or bitwise OR.
*)| XorLogical or bitwise XOR.
*)| ImpliesLogical implication.
*)| PowExponentiation.
*)| MinMinimum.
*)| MaxMaximum.
*)| CopysignCopy sign.
*)| RotlRotate left.
*)| RotrRotate right.
*)| AtList indexing.
*)| List_consList construction.
*)| List_appendList concatenation.
*)| String_prefixCheck if a string is a prefix. (str.prefixof String String Bool)
*)| String_suffixCheck if a string is a suffix. (str.suffixof String String Bool)
*)| String_containsCheck if a string contains another. (str.contains String String Bool)
*)| String_last_indexFind the last index of a substring.
*)| String_in_reCheck if a string matches a regular expression.
*)| Regexp_rangeRange of characters.
*)| Regexp_interIntersection of regular expressions.
*)The type t represents binary operations.