package ocaml-unikraft-arm64

  1. Overview
  2. Docs
OCaml cross compiler to the freestanding Unikraft arm64 backends

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v1.2.0.tar.gz
sha256=ca18a45ef86791d5ffa18436945fbec850b6f3dd68a6a62753b4cb1b6999b19a

doc/stdlib/Stdlib/Pqueue/module-type-OrderedType/index.html

Module type Pqueue.OrderedTypeSource

Input signature of the functors MakeMin and MakeMax.

type t

The type of elements.

val compare : t -> t -> int

A total ordering function to compare elements.

This is a two-argument function f such that f e1 e2 is zero if the elements e1 and e2 are equal, f e1 e2 is strictly negative if e1 is smaller than e2, and f e1 e2 is strictly positive if e1 is greater than e2.

The generic structural comparison function Stdlib.compare is a suitable ordering function for element types such as int or string.