union
ts
function Set.union<T, U>(
target: Set<T>,
source: Set<U>,
): Set<T | U>Returns a set containing all values from both sets.
Example
ts
import { Set } from "@monstermann/set";
Set.union(Set.create([1, 2]), Set.create([2, 3, 4])); // Set([1, 2, 3, 4])
Set.union(Set.create([1, 2]), Set.create([3, 4])); // Set([1, 2, 3, 4])ts
import { Set } from "@monstermann/set";
pipe(Set.create([1, 2]), Set.union(Set.create([2, 3, 4]))); // Set([1, 2, 3, 4])
pipe(Set.create([1, 2]), Set.union(Set.create([3, 4]))); // Set([1, 2, 3, 4])