maxfischer2781 / chainlet

Python module for linking generators/iterators to processing chains
MIT License
1 stars 0 forks source link

Implicit Chain Containers #1

Closed maxfischer2781 closed 7 years ago

maxfischer2781 commented 7 years ago

Chaining chainlets directly is not suitable for forking chains. Currently, chains inside a fork are not created as expected:

start >> a >> (b1 >> b2, c1)

Creates the links:

start >> a
a >> c1
b1 >> b2
a >> b2

In this case, b1 is never used. The last link should have been a >> b1. It may be suitable to have a (temporary?) overarching chain object.

maxfischer2781 commented 7 years ago

Tests are successful.