Usage

How to installing the package

Install the project into your Python environment:

$ pip install pythonic-fp-queues

Importing the module

Import the queue classes and “factory functions” into your code.

from pythonic_fp.queues.fifo import FIFOQueue, fifo_queue
from pythonic_fp.queues.lifo import LIFOQueue, lifo_queue
from pythonic_fp.queues.de import DEQueue, de_queue