Documentation / @ripl/utilities / setFlatMap
Function: setFlatMap()
setFlatMap<
TValue,TResult>(input,iteratee):Set<TResult>
Defined in: packages/utilities/src/collection.ts:248
Flat-maps over a Set, concatenating the arrays returned by the iteratee into a new Set.
Type Parameters
| Type Parameter |
|---|
TValue |
TResult |
Parameters
| Parameter | Type |
|---|---|
input | Set<TValue> |
iteratee | CollectionIteratee<TValue, TResult[]> |
Returns
Set<TResult>