package orsetto

  1. Overview
  2. Docs
A library of assorted structured data interchange languages

Install

Dune Dependency

Authors

Maintainers

Sources

r1.1.3.tar.gz
sha512=9b654edb663ae697563f150824047052f3b1bf760398f24bce6350553f031f73c46b6337239a1acd871e61238597ea92046809e3358290ff14d6ba671b449085

doc/orsetto.cf/Cf_relations/index.html

Module Cf_relations

Utility relations.

Overview

This module defines convenient signatures for the useful equality and total ordering relations on a monomorphic type.

module type Order = sig ... end

Module type defining a type t and a corresponding total ordering function, of the sort generated by Ppx_deriving, which returns the same value as the standard Stdlib.compare function.

val min : (module Order with type t = 't) -> 't -> 't -> 't

Use min (module M: Order) a b to select the minimum of a and b according to the total order M.

val max : (module Order with type t = 't) -> 't -> 't -> 't

Use max (module M: Order) a b to select the maximum of a and b according to the total order M.

module type Equal = sig ... end

Module type defining a type t and a corresponding equality relation function, of the sort generated by Ppx_deriving, which returns the same value as the standard Stdlib.(=) operator.

module type Std = sig ... end

Module type definining a type t and the corresponding equality and total ordering relation functions, of the sort generated by Ppx_deriving, which return the same value as the standard Stdlib.(=) and Stdlib.compare functions

module Int : Std with type t = int

The equality and total ordering relation for standard integers. Prefer the Stdlib.Int module, if available.

module Extensible : sig ... end

A submodule to facilitate relations on extensible types.

OCaml

Innovation. Community. Security.

On This Page
  1. Overview