function withoutAllimport { withoutAll } from "https://dotland.deno.dev/std@0.181.0/collections/without_all.ts"; withoutAll<T>(array: readonly T[], values: readonly T[]): T[]Returns an array excluding all given values. ExamplesExample 1 import { withoutAll } from "https://deno.land/std@0.181.0/collections/without_all.ts"; import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts"; const withoutList = withoutAll([2, 1, 2, 3], [1, 2]); assertEquals(withoutList, [3]); Type ParametersTParametersarray: readonly T[]values: readonly T[]ReturnsT[]