Skip to content
This repository was archived by the owner on Aug 11, 2024. It is now read-only.

Latest commit

 

History

History
64 lines (39 loc) · 1.07 KB

HashmapOptions.md

File metadata and controls

64 lines (39 loc) · 1.07 KB

ton3-core / HashmapOptions

Interface: HashmapOptions<K, V>

Type parameters

Name
K
V

Table of contents

Properties

Properties

keySize

Optional keySize: number | "auto"


prefixed

Optional prefixed: boolean | "auto"


nonEmpty

Optional nonEmpty: boolean


serializers

Optional serializers: Object

Type declaration

Name Type
key (key: K) => Bit[]
value (value: V) => Cell

deserializers

Optional deserializers: Object

Type declaration

Name Type
key (key: Bit[]) => K
value (value: Cell) => V