Skip to main content
Module

x/fun/set.ts>getComparable

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
function getComparable
import { getComparable } from "https://deno.land/x/fun@v2.0.0-alpha.12/set.ts";

Given an instance of Comparable return Comparable<ReadonlySet>.

Examples

Example 1

import * as S from "./set.ts";
import * as N from "./number.ts";
import { pipe } from "./fn.ts";

const { compare } = S.getComparable(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>>