Skip to main content

package @rimbu/hashed/map-custom

undocumented

Interfaces

NameDescription
HashMapCreatorsundocumented

Classes

NameDescription
HashMapBlockundocumented
HashMapBlockBuilderundocumented
HashMapCollisionundocumented
HashMapCollisionBuilderundocumented
HashMapContextundocumented
HashMapEmptyundocumented
HashMapNonEmptyBaseundocumented

Functions

createHashMapContext

undocumented

Definition

export declare function createHashMapContext<UK>(options?: {
  hasher?: Hasher<UK>;
  eq?: Eq<UK>;
  blockSizeBits?: number;
  listContext?: List.Context;
}): HashMap.Context<UK>;

Type parameters
NameDescription
UK

Parameters

NameTypeDescription
options{
  hasher?: Hasher<UK>;
  eq?: Eq<UK>;
  blockSizeBits?: number;
  listContext?: List.Context;
}