Lodash.pullAt

Removes elements from array corresponding to indexes and returns an array of removed elements.

Note: Unlike _.at, this method mutates array.

struct Lodash
nothrow @trusted @safe ref
pullAt
(
ARGS...
)
(
auto ref ARGS values
)

Return Value

Type: auto ref

- Lodash chained on (Array): the new array of removed elements.

Meta