package batteries

  1. Overview
  2. Docs
A community-maintained standard library extension

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v3.2.0.tar.gz
sha256=00f34b9aed4e47f314425b2ca9ceac206f112095a17ea9a7ffa6dac8cfccc492
md5=066051f9a210277710c54ad57c3b9568

doc/batteries.unthreaded/BatHeap/Make/index.html

Module BatHeap.Make

Functorized heaps over arbitrary orderings. All the functions have the same complexity as the non-functorized versions.

Parameters

Signature

type elem = Ord.t

Type of elements of the heap

type t

Type of elements of the heap

Type of the heap

val empty : t

Type of the heap

See BatHeap.empty.

val size : t -> int
val insert : t -> elem -> t
val add : elem -> t -> t
val merge : t -> t -> t
val find_min : t -> elem
val del_min : t -> t
val of_list : elem list -> t
val to_list : t -> elem list
val elems : t -> elem list

See BatHeap.to_list.

  • deprecated

    Same as to_list.

val of_enum : elem BatEnum.t -> t
  • deprecated

    Same as to_list.

See BatHeap.of_enum.

val print : ?first:string -> ?last:string -> ?sep:string -> (elem, 'a) BatIO.printer -> (t, 'a) BatIO.printer
OCaml

Innovation. Community. Security.