import { Reducer } from "https://deno.land/x/rimbu@1.1.0/core/mod.ts";
const { lastWhere } = Reducer;
Returns a Reducer
that remembers the last input value for which the given pred
function returns true.
Examples
Example 1
Example 1
console.log(Stream.range({ amount: 10 }).reduce(Reducer.lastWhere(v => v > 5)))
// => 9