Installation¶
How to installing the module¶
Install the project into your Python environment:
$ pip install pythonic-fp.containers
Importing the module¶
from pythonic_fp.containers.box import Box
from pythonic_fp.containers.functional_tuple import FunctionalTuple, functional_tuple
from pythonic_fp.containers.immutable_list import
from pythonic_fp.containers.maybe import
from pythonic_fp.containers.xor import
Note
Like Python’s built-in list, CA
takes up to one iterable. The ca
function behaves like Python’s []
syntax where ca
creates a CA
object from the arguments passed to it.