import { union } from "https://deno.land/x/rambda@9.4.1/immutable.d.ts";
It takes two lists and return a new list containing a merger of both list with removed duplicates.
R.equals
is used to compare for duplication.
import { union } from "https://deno.land/x/rambda@9.4.1/immutable.d.ts";
It takes two lists and return a new list containing a merger of both list with removed duplicates.
R.equals
is used to compare for duplication.