Skip to main content
Go to Latest
File
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { ascend as ascend_, descend as descend_,} from "./unstable/comparators.ts";import { RedBlackTree as RedBlackTree_ } from "./unstable/red_black_tree.ts";
/** @deprecated (will be removed after 0.206.0) import from `collections/unstable/red_black_tree.ts` instead. */export const ascend = ascend_;/** @deprecated (will be removed after 0.206.0) import from `collections/unstable/red_black_tree.ts` instead. */export const descend = descend_;/** @deprecated (will be removed after 0.206.0) import from `collections/unstable/red_black_tree.ts` instead. */export class RedBlackTree<T> extends RedBlackTree_<T> {}