Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function filterInPlace
import { filterInPlace } from "https://deno.land/std@0.102.0/collections/_utils.ts";

Filters the given array, removing all elements that do not match the given predicate in place. This means array will be modified!.

Parameters

array: Array<T>
predicate: Predicate<T>

Returns

Array<T>