Lodash.invokeMap

Invokes the method at path of each element in collection, returning an array of the results of each invoked method. Any additional arguments are provided to each invoked method. If path is a function, it's invoked for, and this bound to, each element in collection.

struct Lodash
nothrow @trusted @safe ref
invokeMap
(
T
U = Any
)
(
auto ref T path
,
auto ref U args = U.init
)

Return Value

Type: auto ref

- Lodash chained on (Array): the array of results.

Meta