Lodash.flatMap

Creates a flattened array of values by running each element in collection thru iteratee and flattening the mapped results. The iteratee is invoked with three arguments: (value, index|key, collection).

struct Lodash
nothrow @trusted @safe ref
flatMap
(
T = Any
)
(
auto ref T iteratee = T.init
)

Return Value

Type: auto ref

- Lodash chained on (Array): the new flattened array.

Meta