package acgtk

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

This modules provides the functor

Parameters

module Base : BASE

Signature

exception Not_found

Exceptions raised by functions

exception Conflict
type 'a t

The type of the tables

type key = int

The type of the key

val empty : 'a t

empty returns the empty table

val add : ?overwrite:bool -> key -> 'a -> 'a t -> 'a t

add k v t modifies the table t to add the element v at key k. The optional value overwrite is set to false by default. When set to false, the add function raises Table.TABLE.Conflict when the key k was already associated with some value. When set to true, the add function does not raise !Table.TABLE.Conflict if some value was already associated to the key

val find : key -> 'a t -> 'a

find k t returns the element associated with the key k in t. Raises Table.TABLE.Not_found if no such element exists

val fold : (key -> 'a -> 'b -> 'b) -> 'b -> 'a t -> 'b

fold f a t returns f kn vn (f kn-1 vn-1 (...(f k1 v1 a) ...)) where the ki and vi are the associated values in t. The elements are listed in order wrt. to the key