import * as rimbu from "https://deno.land/x/rimbu@1.0.2/hashed/main/index.ts";
Functions
Returns a Hasher instance that hashes any value, and traverses into an object or array to hash its elements. | |
Returns a Hasher instance that hashes any value, but never traverses into an object or array to hash its elements. In those cases it will use toString. | |
Returns a Hasher instance that hashes any value by hashing the string resulting from applying JSON.stringify to the value. | |
Returns a Hasher instance that hashes any value, but only traverses into an object or array to hash its elements one level deep. After one level, it will use toString. | |
Returns a Hasher instance that hashes the string representation of any value | |
Returns a Hasher that hashes arrays of elements by sampling the array and using
the given | |
Returns a Hasher instance that hashes bigints. | |
Returns a Hasher instance that hashes booleans. | |
Returns a Hasher instance that hashes the | |
Returns a Hasher instance that hashes Dates. | |
Returns a Hasher instance that hashes numbers, including 'special' values like NaN and infinities. | |
Returns a Hasher instance that hashes objects of key type K and value type V. If a value if an object or array, it will recursively hash its values. | |
Returns a Hasher instance that hashes objects of key type K and value type V. | |
Returns a Hasher instance that hashes objects of key type K and value type V. If a value if an object or array, it will convert those values to a string. | |
Returns a Hasher instance that hashes any StreamSource limited to a certain amount of elements to prevent haning on infinite streams. | |
Returns a Hasher instance for string values. | |
Returns a Hasher that will return equal hash values for values in a tuple regardless
of their order, and uses the given |
Interfaces
Interface used to hash objects for hashed collections. | |
A type-invariant immutable Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the HashMap API documentation | |
A mutable | |
A context instance for a | |
A non-empty type-invariant immutable Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the HashMap API documentation | |
Utility interface that provides higher-kinded types for this collection. | |
A type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the HashSet API documentation | |
A mutable | |
A context instance for a | |
A non-empty type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the HashSet API documentation | |
Utility interface that provides higher-kinded types for this collection. |