module Unit: Unit
Unit
type t = unit =
unit
|
()
单元类型。
构造函数 () 包含在这里,以便它具有路径,但它不打算用于用户定义的数据类型。
val equal : t -> t -> bool
t -> t -> bool
equal u1 u2 等于 true。
equal u1 u2
true
val compare : t -> t -> int
t -> t -> int
compare u1 u2 等于 0。
compare u1 u2
0
val to_string : t -> string
t -> string
to_string b 等于 "()"。
to_string b
"()"