import { AsyncReducer } from "https://deno.land/x/rimbu@1.2.1/stream/async/async-reducer.ts";
const { last } = AsyncReducer;
Returns an AsyncReducer
that remembers the last input value.
Examples
Example 1
Example 1
await AsyncStream.from(Stream.range{ amount: 10 })).reduce(AsyncReducer.last())
// => 9
type
{ <T>(): AsyncReducer<T, T | undefined>; <T, O>(otherwise: AsyncOptLazy<O>): AsyncReducer<T, T | O>; }