db/radb#

type cbor_index

TBD

meth (Arg₁: cbor_index):close

TBD

meth (Arg₁: cbor_index):delete(Arg₂: any)

TBD

meth (Arg₁: cbor_index):get(Arg₂: integer)

TBD

meth (Arg₁: cbor_index):insert(Arg₂: any)

TBD

meth (Arg₁: cbor_index):search(Arg₂: any)

TBD

type cbor_store

TBD

meth (Arg₁: cbor_store):close

TBD

meth (Arg₁: cbor_store):get(Arg₂: integer)

TBD

meth (Arg₁: cbor_store):set(Arg₂: integer, Arg₃: any)

TBD

fun cborindexcreate(Arg₁: string)

TBD

fun cborindexopen(Arg₁: string)

TBD

fun stringindexcreate(Arg₁: string)

TBD

fun stringindexopen(Arg₁: string)

TBD

meth (Arg₁: string):CborStoreT

TBD

meth (Arg₁: string):CborStoreT(Arg₂: integer)

TBD

meth (Arg₁: string):CborStoreT(Arg₂: integer, Arg₃: integer)

TBD

meth (Path: string):StringStoreT: string_store

Opens an existing string store at Path.

meth (Path: string):StringStoreT(NodeSize: integer): string_store

Creates a new string store at Path with node size NodeSize and default chunk size.

meth (Path: string):StringStoreT(NodeSize: integer, ChunkSize: integer): string_store

Creates a new string store at Path with node size NodeSize and chunk size ChunkSize.

type string_index

TBD

meth (Arg₁: string_index):close

TBD

meth (Arg₁: string_index):count

TBD

meth (Arg₁: string_index):delete(Arg₂: string)

TBD

meth (Arg₁: string_index):get(Arg₂: integer)

TBD

meth (Arg₁: string_index):insert(Arg₂: string)

TBD

meth (Arg₁: string_index):search(Arg₂: string)

TBD

type string_store

A store for strings.

meth (Store: string_store):close

Closes Store.

meth (Store: string_store):get(Index: integer): string

Returns the entry at Index in Store.

meth (Arg₁: string_store):read(Arg₂: integer)

TBD

meth (Store: string_store):set(Index: integer, Value: string): string

Stores Value as the entry at Index in Store and returns Value.

meth (Arg₁: string_store):write(Arg₂: integer)

TBD

type string_store_reader < stream

A stream for reading from a string store entry.

type string_store_writer < stream

A stream for writing to a string store entry.