package elpi

  1. Overview
  2. Docs
ELPI - Embeddable λProlog Interpreter

Install

dune-project
 Dependency

Authors

Maintainers

Sources

elpi-3.7.2.tbz
sha256=bab7cfcad2c06372702f907743216cf059cc56744f820a5a99296f8530aa27e2
sha512=3e82719bb44b90ea196b3eeadfc21073ea15517cc1e8bd46d8beb7b9eb87746c2deb1a530f4f7653d228c33c223a1160580d05902e4b1de0eded576137c89048

doc/elpi.util/Elpi_util/Util/Set/Make/argument-1-Ord/index.html

Parameter Make.Ord

include Set.OrderedType
type t

The type of the set elements.

val compare : t -> t -> int

A total ordering function over the set 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. Example: a suitable ordering function is the generic structural comparison function Stdlib.compare.

include Show with type t := t
val pp : Format.formatter -> t -> unit
val show : t -> string