Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / basis-library / mlton / weak.sig
CommitLineData
7f918cf1
CE
1(* Copyright (C) 2003-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 MLTON_WEAK =
9 sig
10 type 'a t
11
12 val get: 'a t -> 'a option
13 val new: 'a -> 'a t
14 end