Skip to main content
Module

x/collections/comparators.ts

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Latest
File
/** This module is browser compatible. */
/** Compares its two arguments for ascending order using JavaScript's built in comparison operators. */export function ascend<T>(a: T, b: T) { return a < b ? -1 : a > b ? 1 : 0;}
/** Compares its two arguments for descending order using JavaScript's built in comparison operators. */export function descend<T>(a: T, b: T) { return a < b ? 1 : a > b ? -1 : 0;}