Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / mlton / basic / bounded-order.sig
CommitLineData
7f918cf1
CE
1(* Copyright (C) 1999-2005 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 *
4 * MLton is released under a BSD-style license.
5 * See the file MLton-LICENSE for details.
6 *)
7
8signature BOUNDED_ORDER =
9 sig
10 structure O: ORDER
11 include ORDER
12 val inject: O.t -> t
13 val project: t -> O.t
14 val largest: t
15 val smallest: t
16 end