mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 11:15:43 -05:00
13 lines
279 B
OCaml
13 lines
279 B
OCaml
(*
|
|
MSAT is free software, using the Apache license, see file LICENSE
|
|
Copyright 2014 Guillaume Bury
|
|
Copyright 2014 Simon Cruanes
|
|
*)
|
|
|
|
|
|
module type OrderedType = sig
|
|
(** Signature for ordered types (mainly for use in Map.Make) *)
|
|
|
|
type t
|
|
val compare : t -> t -> int
|
|
end
|