Macaulay2 » Documentation
Packages » Python » PythonObject » PythonObject | PythonObject
next | previous | forward | backward | up | index | toc

PythonObject | PythonObject -- bitwise disjunction of Python objects

Description

Perform the bitwise disjunction ("or") operation on Python objects.

i1 : toPython 6 or toPython 3

o1 = 6

o1 : PythonObject of class int

If one of the arguments is a Macaulay2 object, then it is first converted to a Python object.

i2 : toPython 14 | 7

o2 = 15

o2 : PythonObject of class int
i3 : 14 | toPython 7

o3 = 15

o3 : PythonObject of class int

See also

Menu

Ways to use this method:


The source of this document is in Python/doc/bitwise.m2:330:0.