package plato

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

Module Abc.MutableMappingOfHashtblSource

Parameters

module P : sig ... end

Signature

Sourcemodule H : Stdcompat.Hashtbl.S with type key = P.key
include MUTABLE_MAPPING with type key = P.key and type in_value = P.value and type out_value = P.value and type t = P.value H.t
Sourcetype key = P.key
Sourcetype in_value = P.value
Sourcetype out_value = P.value
include MAPPING with type key := key and type value := out_value and type t := t
include COLLECTION with type key := key and type e := out_value and type t := t and type i := key
include SIZED with type t := t
Sourceval len : t -> int
include ITERABLE with type e := out_value and type t := t and type key := key
Sourceval iter : (key -> out_value -> unit) -> t -> unit
Sourceval fold : (key -> out_value -> 'acc -> 'acc) -> t -> 'acc -> 'acc
include CONTAINER with type t := t and type i := key
Sourceval contains : key -> t -> bool
Sourceval getitem : key -> t -> out_value
Sourceval getitem_opt : key -> t -> out_value option
Sourceval keys : t -> key list
Sourceval items : t -> (key * out_value) list
Sourceval values : t -> out_value list
Sourceval eq : t -> t -> bool
Sourceval ne : t -> t -> bool
Sourceval setitem : key -> in_value -> t -> unit
Sourceval delitem : key -> t -> unit
Sourceval pop : key -> t -> out_value
Sourceval popitem : t -> key * out_value
Sourceval clear : t -> unit
Sourceval update : t -> t -> unit
Sourceval setdefault : key -> in_value -> t -> out_value