UNPKG

flo-ll-rb-tree

Version:

A simple left leaning red black tree implementation.

7 lines (3 loc) 124 B
import { type Obj } from './obj.js'; const compareObjs = (a: Obj, b: Obj) => a.val - b.val; export { compareObjs }