Parameters
scanner: ((acc) => ((value) => Tuple<A, R>))
- (acc): ((value) => Tuple<A, R>)
Returns ((value) => Tuple<A, R>)
Returns ((init) => (<K>(m) => Tuple<A, Map<K, R>>))
The last accumulating state and new scanned Map
.
- (init): (<K>(m) => Tuple<A, Map<K, R>>)
Returns (<K>(m) => Tuple<A, Map<K, R>>)
- <K>(m): Tuple<A, Map<K, R>>
Returns Tuple<A, Map<K, R>>
Scans over the
Map
withscanner
function, a stateful computation.