Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Interval_tree.IntervalAn interval has a left bound, a right bound and a payload (called value)
val create : float -> float -> 'a -> 'a tcreate lbound rbound value create a new float interval with an associated value. PRECONDITION: lbound must be <= rbound.
val of_triplet : (float * float * 'a) -> 'a tof_triplet (lbound, rbound, value) = create lbound rbound value
val to_triplet : 'a t -> float * float * 'ato_triplet itv = (lbound, rbound, value)