Skip to main content
Go to Latest
function filterInPlace
import { filterInPlace } from "https://deno.land/std@0.139.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: (el: T) => boolean

Returns

Array<T>