evaluateSeq method

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

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

Implementation

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