|
|
|
|
|
|
|
|
|
|
|
cat2(iter_of_iters)
Lazily concatenate iterators, iterated by big iterator |
source code
|
|
|
|
|
|
|
equal(iter1,
iter2,
verbose=None,
operator=<function <lambda> at 0x2980050>)
True if iterator 1 has same elements as iterator 2 |
source code
|
|
|
|
filter(predicate,
iterator)
Like filter in a lazy functional programming language |
source code
|
|
|
|
foldl(f,
default,
iter)
the fundamental list iteration operator.. |
source code
|
|
|
|
foldr(f,
default,
iter)
foldr the "fundamental list recursion operator"? |
source code
|
|
|
|
foreach(function,
iterator)
Run function on each element in iterator |
source code
|
|
|
|
|
|
|
map(function,
iterator)
Like map in a lazy functional programming language |
source code
|
|
|
|
multiplex(iter,
num_of_forks,
final_func=None,
closing_func=None)
Split a single iterater into a number of streams |
source code
|
|