pythonic-fp-queues¶
Project pythonic-fp-queues one of the PyPI Pythonic FP projects.
PyPI 5.1.2+ release
Queues¶
Stateful Queues based on a circular array.
Geared to specific algorithms by limiting what can be done with the queues. Sometimes the power of a data structure is not what it empowers you to do, but what it prevents you from doing to yourself.
class FIFOQueue: First-In-First-Out Queue.
class LIFOQueue: Last-In-First-Out Queue.
class DEQueue: Double-Ended Queue.
Getting Started
Documentation