Skip to main content
Module

std/collections/bs_tree.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license./** This module is browser compatible. */
import { BinarySearchTree } from "./binary_search_tree.ts";export * from "./_comparators.ts";
/** @deprecated use BinarySearchTree instead */export { BinarySearchTree as BSTree };