mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 19:55:31 -05:00
13 lines
168 B
OCaml
13 lines
168 B
OCaml
|
|
[@@@ifge 4.08]
|
|
|
|
include Unit
|
|
|
|
[@@@else_]
|
|
|
|
type t = unit
|
|
let[@inline] equal (_:t) (_:t) = true
|
|
let[@inline] compare (_:t) (_:t) = 0
|
|
let to_string () = "()"
|
|
|
|
[@@@endif]
|