import { AsyncReducer } from "https://deno.land/x/rimbu@1.2.1/stream/async/async-reducer.ts";
const { startsWithSlice } = AsyncReducer;
Returns a AsyncReducer
that returns true if the first input values match the given slice
values repeated amount
times. Otherwise,
returns false.
Parameters
slice: AsyncStreamSource<T>
- a async sequence of elements to match against
Returns
AsyncReducer<T, boolean>