Skip to main content
Module

x/datastructure/mod.ts>HashTable

Implement different Data Structures using TypeScript. Deno Third-party Module.
Go to Latest
class HashTable
implements HashTableApi
import { HashTable } from "https://deno.land/x/datastructure@1.0.4/mod.ts";

Constructors

new
HashTable()

Properties

length: number

Methods

add(data: DataType<any>)
get(key: string)
log(column?: string[])
remove(key: string)
update(key: string, newValue: any)