package caqti

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

Internal min-heap implementation.

This is a simple min-heap implementation deemed sufficient for the Pool module. There are algorithms better suited for larger heaps.

module type S = sig ... end
module Make (Elt : Stdlib.Set.OrderedType) : S with type elt = Elt.t