package melange

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

Module Js_parser.Flow_setSource

Sourcemodule type OrderedType = sig ... end
Sourcemodule type S = sig ... end
Sourcetype 'elt t0 =
  1. | Empty
  2. | Leaf of 'elt
  3. | Node of {
    1. h : int;
    2. v : 'elt;
    3. l : 'elt t0;
    4. r : 'elt t0;
    }
Sourcetype 'elt partial_node = {
  1. h : int;
  2. v : 'elt;
  3. l : 'elt t0;
  4. r : 'elt t0;
}
Sourceval (~!) : 'elt t0 -> 'elt partial_node
Sourcetype ('elt, 't) enumeration0 =
  1. | End
  2. | More of 'elt * 't * ('elt, 't) enumeration0
Sourceval cons_enum : 'a t0 -> ('a, 'a t0) enumeration0 -> ('a, 'a t0) enumeration0
Sourceval seq_of_enum_ : ('a, 'a t0) enumeration0 -> 'a Seq.t
Sourceval to_seq : 'a t0 -> 'a Seq.t
Sourceval height : 'a t0 -> int
Sourceval singleton : 'a -> 'a t0
Sourceval unsafe_node : l:'a t0 -> v:'a -> r:'a t0 -> 'a t0
Sourceval create : 'a t0 -> 'a -> 'a t0 -> 'a t0
Sourceval of_increasing_iterator_unchecked : (unit -> 'a) -> int -> 'a t0
Sourceval of_sorted_array_unchecked : 'a array -> 'a t0
Sourceval bal : 'a t0 -> 'a -> 'a t0 -> 'a t0
Sourceval add_min_element : 'a -> 'a t0 -> 'a t0
Sourceval add_max_element : 'a -> 'a t0 -> 'a t0
Sourceval join : 'a t0 -> 'a -> 'a t0 -> 'a t0
Sourceval min_elt : 'a t0 -> 'a
Sourceval min_elt_opt : 'a t0 -> 'a option
Sourceval max_elt : 'a t0 -> 'a
Sourceval max_elt_opt : 'a t0 -> 'a option
Sourceval remove_min_elt : 'a t0 -> 'a t0
Sourceval merge : 'a t0 -> 'a t0 -> 'a t0
Sourceval concat : 'a t0 -> 'a t0 -> 'a t0
Sourceval cardinal : 'a t0 -> int
Sourceval elements_aux : 'a list -> 'a t0 -> 'a list
Sourceval elements : 'a t0 -> 'a list
Sourceval empty : 'a t0
Sourceval is_empty : 'a t0 -> bool
Sourceval of_sorted_list : 'a list -> 'a t0
Sourcetype 'a t1 = private 'a t0 =
  1. | Empty
  2. | Leaf of 'a
  3. | Node of {
    1. h : int;
    2. v : 'a;
    3. l : 'a t0;
    4. r : 'a t0;
    }
Sourcemodule Make (Ord : OrderedType) : S with type elt = Ord.t
OCaml

Innovation. Community. Security.