import { Eq } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";
Variables
An Eq instance that uses |
Functions
Returns an Eq instance that checks equality of any values. For composed values (objects and iterables) it will recursively compare the contained values. | |
Returns an Eq instance that checks equality of any values. For composed values (objects and iterables) it will compare with Object.is. | |
Returns an Eq instance that considers values equal their JSON.stringify values are equal. | |
Returns an Eq instance that checks equality of any values. For composed values (objects and iterables) it will enter 1 level, and if again compound values are found, they are compared with Object.is. | |
Returns an Eq instance that considers strings equal taking the given or default locale into account. | |
Returns an Eq instance that compares Date objects according to their | |
Returns the default Eq instance, which is the Eq.anyDeepEq() instance. | |
Returns an Eq instance that compares Iterables by comparing their elements with the given | |
Returns an Eq instance that checks equality of objects containing property values of type V by iteratively
applying given | |
Returns an Eq instance that considers strings equal regardless of their case. | |
Returns an Eq instance that considers strings equal when all their charcodes are equal. | |
Returns an | |
Returns an Eq instance for objects that have a |
import { type Eq } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";
A function returning true if given v1
and v2
should be considered equal.