Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/set_operations/mod.ts>union

🦕 Deno module which provides basic set operations
Latest
function union
import { union } from "https://deno.land/x/set_operations@v1.2.0/mod.ts";

Create a new set with elements from the setA and the setB.

Parameters

setA: Set<T>
setB: Set<T>