File: stdcompat__unit_s.mli.in

package info (click to toggle)
ocaml-stdcompat 20~git20240529-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,540 kB
  • sloc: ml: 34,099; sh: 861; makefile: 249
file content (23 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module type S = sig
@BEGIN_FROM_4_08_0@
type t = unit =
  | () 
@END_FROM_4_08_0@
@BEGIN_BEFORE_4_08_0@
type t = unit =
  | () 
@END_BEFORE_4_08_0@
(** @since 4.08.0: type t = unit =
                     | () 
 *)

val equal : t -> t -> bool
(** @since 4.08.0: val equal : t -> t -> bool *)

val compare : t -> t -> int
(** @since 4.08.0: val compare : t -> t -> int *)

val to_string : t -> string
(** @since 4.08.0: val to_string : t -> string *)

end