Module PythonFrontend.PyBuiltin
type binary_op =
| Add
| And
| FloorDivide
| LShift
| MatrixMultiply
| Modulo
| Multiply
| Or
| Power
| RShift
| Subtract
| TrueDivide
| Xor
type unary_op =
| Positive
| Negative
| Not
| Invert
type builder =
| List
| Set
| Tuple
| Map
| String
| Slice
type textual =
| IsTrue
| Binary of binary_op
| Inplace of binary_op
| Unary of unary_op
| PythonCall
| PythonCallKW
| PythonKWArg
| PythonClass
| PythonClassName
| PythonCode
| PythonIter
| PythonIterNext
| PythonBuild of builder
| PythonIndex
| PythonSubscriptGet
| PythonSubscriptSet
| PythonFormatRepr
| PythonFormatStr
| PythonFormatAscii
| PythonFormat
| CompareOp of Compare.t
val of_string : string -> builtin option