UNPKG

typescript-ds-lib

Version:

A collection of TypeScript data structure implementations

7 lines (6 loc) 210 B
export declare class HashUtils { private static valueToString; static wangHash32(key: number): number; static djb2aHash(str: string): number; static hash<K>(key: K, capacity: number): number; }