creeper-adventure/.venv/lib/python3.8/site-packages/mypyc/doc/bool_operations.rst
2022-03-31 20:20:07 -05:00

27 lines
373 B
ReStructuredText

.. _bool-ops:
Native boolean operations
=========================
Operations on ``bool`` values that are listed here have fast,
optimized implementations.
Construction
------------
* ``True``
* ``False``
* ``bool(obj)``
Operators
---------
* ``b1 and b2``
* ``b1 or b2``
* ``not b``
Functions
---------
* ``any(expr for ... in ...)``
* ``all(expr for ... in ...)``