bartorch.nlop.chain

Contents

bartorch.nlop.chain#

bartorch.nlop.chain(a, b, *, output=0, input=0)#

Output output of a into input input of b.

nlop_chain2. a runs first. The result takes b’s remaining inputs and then all of a’s, and returns all of b’s outputs and then a’s remaining ones.

For two operators of one argument each this is b @ a, which keeps the reading order of composition; this is the form that reaches the rest.