Expand description
Sequencing combinators
Structs§
- Pair
- Combinator that sequentially applies two combinators, where the second combinator depends on the first one.
- Preceded
- Combinator that sequentially applies two combinators and returns the result of the second one.
- Terminated
- Combinator that sequentially applies two combinators and returns the result of the first one.
Enums§
- POrS
Type - A type that can be either a
PTypeor anSType, whoseViewis the same asPType. This is used for the continuation inPair.
Traits§
- Continuation
- Use this Continuation trait instead of Fn(Input) -> Output to avoid unsupported Verus features