package tablecloth-base

  1. Overview
  2. Docs
Native OCaml library implementing Tablecloth, a cross-platform standard library for OCaml and Rescript

Install

Dune Dependency

Authors

Maintainers

Sources

0.0.9.tar.gz
md5=eef8da54ae2e373fc38a08bb761ea973
sha512=c74de7cf90798c6c2702a21f40d340da3fa2405f00ccc193568a04d6b0e08a41b47d5db35c0ed7662043f1fe223c2e82212e162a64f67c3577dece6660c08b20

doc/src/tablecloth-base/TableclothContainer.ml.html

Source file TableclothContainer.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(** This module contains module signatures which are used in functions which
    accept first class modules.
*)

module type Sum = sig
  (** Modules which conform to this signature can be used with functions like
      {!Array.sum} or {!List.sum}.
  *)

  type t

  val zero : t

  val add : t -> t -> t
end
OCaml

Innovation. Community. Security.