- Preparing search index...
- The search index is not available
atomic-fns
- remove<T>(arr: T[], func: T): T[]
-
Returns T[]
- remove<T>(arr: T[], func: T[]): T[]
-
Returns T[]
- remove<T>(arr: T[], func: Iteratee<T, any, any>): T[]
-
Parameters
-
arr: T[]
-
func: Iteratee<T, any, any>
Returns T[]
Removes all elements from array that
func
returns truthy for and returns an array of the removed elements.Returns