Logical field return type.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__and__(x,
y)
AND (conjunction) x & y: True iff both x, y are True False iff at
least one of x, y is False Unknown otherwise |
source code
|
|
|
__rand__(x,
y)
AND (conjunction) x & y: True iff both x, y are True False iff at
least one of x, y is False Unknown otherwise |
source code
|
|
|
__or__(x,
y)
OR (disjunction): x | y => True iff at least one of x, y is True |
source code
|
|
|
__ror__(x,
y)
OR (disjunction): x | y => True iff at least one of x, y is True |
source code
|
|
|
__xor__(x,
y)
XOR (parity) x ^ y: True iff only one of x,y is True |
source code
|
|
|
__rxor__(x,
y)
XOR (parity) x ^ y: True iff only one of x,y is True |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__init__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|