This package provides basic functions on sequences (now only list
is supported).
All these provided functions are defined in functional way and do not update given arguments, but return newly constructed values.
$ pip install basic_iter
basic_iter$ poetry install --no-root
To generate documents:
basic_iter$ make doc
This will generate documentation under ./docs/build/html
.
For format checking by black:
basic_iter$ make format_check
For type checking by mypy:
basic_iter$ make type_check
For executing unit tests:
basic_iter$ make test