package partition_map

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

It is recommended that one construct partition map's in Descending order and then convert them into the ascending order for merging Ascending.of_descending.

type +'a t
val empty : 'a t
val is_empty : 'a t -> bool
val singleton : 'a -> 'a t
val size : 'a t -> int
val to_string : 'a t -> ('a -> string) -> string
val add : eq:'a equality -> 'a -> 'a t -> 'a t