Lodash.reject

The opposite of _.filter; this method returns the elements of collection that predicate does not return truthy for.

struct Lodash
nothrow @trusted @safe ref
reject
(
T = Any
)
(
auto ref T predicate = T.init
)

Return Value

Type: auto ref

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

Meta