Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / mlton / backend / scale.sig
CommitLineData
7f918cf1
CE
1(* Copyright (C) 2009 Matthew Fluet.
2 * Copyright (C) 2004-2007 Henry Cejtin, Matthew Fluet, Suresh
3 * Jagannathan, and Stephen Weeks.
4 *
5 * MLton is released under a BSD-style license.
6 * See the file MLton-LICENSE for details.
7 *)
8
9signature SCALE_STRUCTS =
10 sig
11 end
12
13signature SCALE =
14 sig
15 include SCALE_STRUCTS
16
17 datatype t = One | Two | Four | Eight
18
19 val fromBytes: Bytes.t -> t option
20 val layout: t -> Layout.t
21 val toInt: t -> int
22 val toString: t -> string
23 end