import { getComparableSet } from "https://deno.land/x/fun@v2.0.0/set.ts";
Given an instance of Comparable return Comparable<ReadonlySet>.
Examples
Example 1
Example 1
import * as S from "./set.ts";
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const { compare } = S.getComparableSet(N.ComparableNumber);
const result1 = compare(
S.set(1, 2, 3))(
S.set(3, 2, 1)
); // true
const result2 = compare(
S.set(1, 2, 3))(
S.set(1, 2, 3, 4)
); // false
Returns
Comparable<ReadonlySet<A>>