package ocaml-solo5-cross-aarch64

  1. Overview
  2. Docs
OCaml cross-compiler to the freestanding 64-bit ARM Solo5 backend

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v1.2.0.tar.gz
md5=4d07934aea2d32b77ba1b8bb062c6594
sha512=2ec008da088f7998d024b790679605813f1954de36b999031db0b003706e67f3f13554e93fa07be00f26633ea27c2b2f9f987e8b08f85c63f956bfbc306bd620

doc/stdlib/Stdlib/Pqueue/MakeMaxPoly/index.html

Module Pqueue.MakeMaxPolySource

Functor building an implementation of max-priority queues given a totally ordered type for the elements.

Parameters

Signature

Sourcetype 'a t
Sourceval create : unit -> 'a t
Sourceval length : 'a t -> int
Sourceval is_empty : 'a t -> bool
Sourceval add : 'a t -> 'a E.t -> unit
Sourceval add_iter : 'a t -> (('a E.t -> unit) -> 'x -> unit) -> 'x -> unit
Sourceval max_elt : 'a t -> 'a E.t option
Sourceval get_max_elt : 'a t -> 'a E.t
Sourceval pop_max : 'a t -> 'a E.t option
Sourceval remove_max : 'a t -> unit
Sourceval clear : 'a t -> unit
Sourceval copy : 'a t -> 'a t
Sourceval of_array : 'a E.t array -> 'a t
Sourceval of_list : 'a E.t list -> 'a t
Sourceval of_iter : (('a E.t -> unit) -> 'x -> unit) -> 'x -> 'a t
Sourceval iter_unordered : ('a E.t -> unit) -> 'a t -> unit
Sourceval fold_unordered : ('acc -> 'a E.t -> 'acc) -> 'acc -> 'a t -> 'acc