package store-dict

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

Parameter Make2.D

type 'k key
type ('k, 'v) t
type create_params
val trail_params : create_params
val create : create_params -> ('k, 'v) t
val find : ('k, 'v) t -> 'k key -> 'v
val mem : ('k, 'v) t -> 'k key -> bool
val replace : ('k, 'v) t -> 'k key -> 'v -> unit
val remove : ('k, 'v) t -> 'k key -> unit

no-op on missing keys

val iter : ('k key -> 'v -> unit) -> ('k, 'v) t -> unit