File: stdcompat__unit_s.mli.in

package info (click to toggle)
ocaml-stdcompat 21.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,648 kB
  • sloc: ml: 34,677; sh: 830; makefile: 239
file content (23 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (3)
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