aboutsummaryrefslogtreecommitdiff
path: root/cell.mli
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2016-11-15 13:00:01 +0100
committerSébastien Dailly <sebastien@chimrod.com>2016-11-15 13:00:01 +0100
commitef312564ca84a2b49fc291434d8fb2f8501bb618 (patch)
tree79415fcf225e6da1042c8edaae5e4a74c7a983cb /cell.mli
Initial commit
Diffstat (limited to 'cell.mli')
-rwxr-xr-xcell.mli20
1 files changed, 20 insertions, 0 deletions
diff --git a/cell.mli b/cell.mli
new file mode 100755
index 0000000..621fc3b
--- /dev/null
+++ b/cell.mli
@@ -0,0 +1,20 @@
+type t = (int * int) * (bool * bool)
+
+module Set : sig
+
+ include Set.S with type elt = (int * int)
+
+ val printb: UTF8.Buffer.buffer -> t -> unit
+
+end
+
+val to_pair: t -> (int * int)
+
+val from_string: bool * string -> bool * Num.num -> t
+
+val to_hname: int -> UTF8.t
+
+val to_string: t -> UTF8.t
+
+val to_buffer: UTF8.Buffer.buffer -> t -> unit
+