import { set } from "https://deno.land/x/fun@v.2.0.0-alpha.11/mod.ts";
const { elem } = set;
Given an insuance of Eq create a function that takes a value A and returns a predicate over ReadonlySet the returns true if there are any members of the set that are equal to the value.
Examples
Example 1
Example 1
import * as S from "./set.ts";
import * as N from "./number.ts";
import { pipe } from "./fn.ts";
const elem = S.elem(N.EqNumber);
const set = S.set(1, 2, 3);
const result1 = pipe(set, elem(1)); // true
const result2 = pipe(set, elem(10)); // false
Parameters
S: Eq<A>