Skip to main content
Module

x/rimbu/mod.ts>Comp.anyDeepComp

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
function Comp.anyDeepComp
import { Comp } from "https://deno.land/x/rimbu@0.13.1/mod.ts";
const { anyDeepComp } = Comp;

Returns a Comp instance that compares any value using default comparison functions. For Iterables and objects, their elements are compared recursively.

Examples

Example 1

const c = Comp.anyDeepComp();
console.log(c.compare({ a: 1, b: 1 }, { b: 1, a: 1 }))
// => 0
console.log(c.compare([{ a: 1, b: 1 }], [{ b: 1, a: 1 }]))
// => 0