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