@euriklis/ds-architect
Version:
`@euriklis/ds-architect` is a modular and extensible library that provides a rich ecosystem for graph and network-based data structures. Designed with both academic rigor and practical application in mind, this library offers powerful graph algorithms and
6 lines (5 loc) • 518 B
TypeScript
import { AVLTree } from "../../AVL";
import type { LinkedDataNode } from "../../DataNode";
export declare const MapInsertion: <T = undefined>(Node: LinkedDataNode<T>, map: null | Map<string, LinkedDataNode<T>> | AVLTree<LinkedDataNode<T>>) => void;
export declare const MapDeletion: <T = unknown>(id: string, map: null | Map<string, LinkedDataNode> | AVLTree<LinkedDataNode<T>>) => void;
export declare const MapHas: <T = unknown>(id: string, map: Map<string, LinkedDataNode> | AVLTree<LinkedDataNode<T>>) => boolean;