import { withoutAll } from "https://deno.land/x/denogres@v4.0.1/vendor/deno.land/std@0.173.0/collections/without_all.ts";
Returns an array excluding all given values.
Examples
Example 1
Example 1
import { withoutAll } from "https://deno.land/std@0.224.0/collections/without_all.ts";
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
const withoutList = withoutAll([2, 1, 2, 3], [1, 2]);
assertEquals(withoutList, [3]);