package bancos

  1. Overview
  2. Docs
A simple read-optimistic write-exclusive KV-store

Install

dune-project
 Dependency

Authors

Maintainers

Sources

bancos-0.0.1.tbz
sha256=f9603b60308f70937f49cc2a32657549bdcb2db197ed5409ce9bd688187d994c
sha512=6cbfffa0c08b9bee5d8729656fb9ad6ea70eaf056ec01923b99eb47e113ddb7b51fa5c2b66b149116fb511f2506cb369ee73c3ca52cec2c372b8f0a7158c894f

doc/bancos.part/Part/index.html

Module PartSource

Sourcetype t
Sourcetype reader
Sourcetype writer
Sourcetype uid = private int
Sourceval lookup : reader -> Rowex.key -> int
Sourceval iter : fn:(Rowex.key -> int -> unit) -> reader -> unit
Sourceval exists : reader -> Rowex.key -> bool
Sourceval remove : writer -> Rowex.key -> unit
Sourceval insert : writer -> Rowex.key -> int -> unit
Sourceval from_system : ?size:int -> string -> t
Sourceval reader : t -> (uid:uid -> reader -> 'a) -> 'a
Sourceval writer : t -> (uid:uid -> writer -> 'a) -> ('a, exn) result