Documentation / @ripl/utilities / setFlatMap
Function: setFlatMap() ​
setFlatMap<
TValue,TResult>(input,iteratee):Set<TResult>
Defined in: collection.ts:240
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>