tubes.memory
module documentationtubes
Founts and drains that can produce values from static data in memory.
Function | iteratorFount | Create and return an IFount that delivers the
values from the given iterator. |
Class | _IteratorTube | An _IteratorTube is an
ITube delivering the
values from an iterable. |
Class | _NotQuiteNull | A _NotQuiteNull is a
fount that delivers a StopIteration
flowStopped after yielding its values. |
Create and return an IFount
that delivers the
values from the given iterator.
Parameters | iterable | an iterable of any values. |
Returns | a fount which will deliver the given iterable to its drain. |