// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. /** This module is browser compatible. */ import { RedBlackTree } from "./red_black_tree.ts"; export * from "./_comparators.ts"; /** @deprecated use RedBlackTree instead */ export { RedBlackTree as RBTree };