package sanddb

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Sanddb.Database is the basic module type that will be used to communicate with the database.

type t
val file_path : string
val read_all_records : unit -> (Record_Id.t * t, exn) result list Lwt.t
val read_visible_records : unit -> (Record_Id.t * t, exn) result list Lwt.t
val insert_record : t -> Record_Id.t Lwt.t
val insert_shadowing_record : Record_Id.t -> t -> Record_Id.t Lwt.t