pub type AndThen<A, B> = CombinatorSystem<AndThenMarker, A, B>;
Combines the outputs of two systems using the && operator.
&&
struct AndThen<A, B> { /* private fields */ }