Skip to main content
Module

std/collections/rb_node.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 { Direction } from "./bs_node.ts";import { RedBlackNode } from "./red_black_node.ts";
/** @deprecated use Direction instead */export type { Direction as direction };
export type { Direction };
/** @deprecated use RedBlackNode instead */export { RedBlackNode as RBNode };