模块 Stdlib.Unit

module Unit: Unit

单元类型

type t = unit = 
| ()

单元类型。

构造函数 () 包含在这里,以便它具有路径,但它不打算用于用户定义的数据类型。

val equal : t -> t -> bool

equal u1 u2 等于 true

val compare : t -> t -> int

compare u1 u2 等于 0

val to_string : t -> string

to_string b 等于 "()"