executeSeq method

IList<S> executeSeq(
  1. Iterable<State<S, dynamic>> arr
)

Run the iterable of State's in sequence, only returning the new states.

Implementation

IList<S> executeSeq(Iterable<State<S, dynamic>> arr) =>
    arr.map(run).map((t) => t.second).toIList();