pythonic-fp-queues¶
Project pythonic-fp-queues one of the PyPI Pythonic FP projects.
PyPI 5.1.1 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.
module |
class |
name |
|---|---|---|
pythonic_fp.queues.fifo |
FIFOQueue |
First-In-First-Out Queue |
pythonic_fp.queues.lifo |
LIFOQueue |
Last-In-First-Out Queue |
pythonic_fp.queues.de |
DEQueue |
Double-Ended Queue |
Getting Started
Documentation