Function: toMinWithAsync()
toMinWithAsync<
Value
>(fn
):AsyncOptionalReducer
<Value
>
Returns an async optional reducer that finds the minimum value of the values
it receives by comparing the numerical values of each value, as defined by
fn
.
Use when composing reducers. Prefer minWithAsync and minWithConcur for direct use on iterables.
Type Parameters
• Value
Parameters
• fn
Returns
AsyncOptionalReducer
<Value
>