package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type index = t
type 'a t
val empty : 'a t
val singleton : 'a -> 'a t
val extend : 'a t -> index -> (index -> 'a) -> 'a t
val retract : 'a t -> index -> 'a t
val contains : 'a t -> index -> bool
val last : 'a t -> index option
val set : 'a t -> index -> 'a -> unit
val get : 'a t -> index -> 'a