¤ loopF, loopLeftF, et al
Types
loopF :: F a a -> F a a
loopLeftF :: F (Either a b) (Either a c) -> F b c
loopRightF :: F (Either a b) (Either c b) -> F a c
loopThroughRightF :: F (Either a b) (Either c d) -> F c a -> F b d
Description
These combinators are used to create circular connections between fudgets,
as illustrated in the diagram below.
See Also
Serial and parallel composition: >==<, >+<.
Bugs
The names are wrong in the diagram. The diagram for
loopThroughRight actually illustrates
loopCompThroughRightF.