package batteries

  1. Overview
  2. Docs
A community-maintained standard library extension

Install

Dune Dependency

Authors

Maintainers

Sources

v3.6.0.tar.gz
md5=1bcb27dfbd130eb057561196ef851649
sha512=2a56611b09a5f1cba6457539f8b6bc87a5f2a5454b36cdb39f6e0d6a5dac6db179aab1ba87c74dd49cc41df31a9a96feb349028ea41df7371ecb47f4d9dfafc4

doc/batteries.unthreaded/BatUnit/index.html

Module BatUnit

Operations on unit.

  • author David Teller
type t = unit

The unit type, i.e. a type with only one element, ().

val string_of : t -> string

Convert the given unit to a string.

Returns "()".

val of_string : string -> t

Convert the given string to a unit.

Accepts "()".

val compare : t -> t -> int

Compare two units.

Always returns 0.

val ord : t -> t -> BatOrd.order

Always returns BatOrd.Eq

val equal : t -> t -> bool

Always returns true.

Boilerplate code
val print : 'a BatInnerIO.output -> unit -> unit

Printing

OCaml

Innovation. Community. Security.

On This Page
  1. Boilerplate code