db/radb

type cborstore

TBD

meth (Arg₁: cborstore):close

TBD

meth (Store: cborstore):count

TBD

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

TBD

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

TBD

type fixedstore

A store for strings.

meth (Store: fixedstore):close

Closes Store.

meth (Store: fixedstore):count

TBD

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

Returns the entry at Index in Store.

meth (Arg₁: stringstore):append(Arg₂: integer)

TBD

fun cborstorecreate(Arg₁: string, Arg₂: integer)

TBD

fun cborstoreopen(Arg₁: string)

TBD

fun fixedstorecreate(Path: string, NodeSize: integer): string_store

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

fun fixedstoreopen(Path: string): string_store

Opens an existing string store at Path.

fun stringindexcreate(Arg₁: string)

TBD

fun stringindexopen(Arg₁: string)

TBD

fun stringstorecreate(Path: string, NodeSize: integer): string_store

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

fun stringstoreopen(Path: string): string_store

Opens an existing string store at Path.

fun uuidindexcreate(Arg₁: string)

TBD

fun uuidindexopen(Arg₁: string)

TBD

type stringindex

TBD

meth (Arg₁: stringindex):close

TBD

meth (Arg₁: stringindex):count

TBD

meth (Arg₁: stringindex):delete(Arg₂: address)

TBD

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

TBD

meth (Arg₁: stringindex):insert(Arg₂: address)

TBD

meth (Arg₁: stringindex):search(Arg₂: address)

TBD

type stringstore

A store for strings.

meth (Store: stringstore):close

Closes Store.

meth (Store: stringstore):count

TBD

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

Returns the entry at Index in Store.

meth (Arg₁: stringstore):insert(Arg₂: integer, Arg₃: integer)

TBD

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

TBD

meth (Arg₁: stringstore):remove(Arg₂: integer, Arg₃: integer)

TBD

meth (Arg₁: stringstore):search(Arg₂: integer, Arg₃: integer)

TBD

meth (Store: stringstore):set(Index: integer, Value: address): string

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

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

TBD

type stringstorereader < stream

A stream for reading from a string store entry.

type stringstorewriter < stream

A stream for writing to a string store entry.

type uuidindex

TBD

meth (Arg₁: uuidindex):close

TBD

meth (Arg₁: uuidindex):count

TBD

meth (Arg₁: uuidindex):delete(Arg₂: uuid)

TBD

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

TBD

meth (Arg₁: uuidindex):insert(Arg₂: uuid)

TBD

meth (Arg₁: uuidindex):search(Arg₂: uuid)

TBD