Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / mlton / basic / number.sig
CommitLineData
7f918cf1
CE
1(* Copyright (C) 1999-2006 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 NUMBER =
9 sig
10 include INTEGER
11 structure I : INTEGER
12
13 val / : t * t -> t
14 val inverse : t -> t
15 val ln : t -> t
16 val exp : t -> t
17 val log : t * t -> t
18 val log2 : t -> t
19
20 val fromReal : real -> t
21
22 (* Rational Specific *)
23 val numerator : t -> I.t
24 val denominator : t -> I.t
25 end