summaryrefslogtreecommitdiff
path: root/utils/cset.mli
diff options
context:
space:
mode:
Diffstat (limited to 'utils/cset.mli')
-rw-r--r--utils/cset.mli9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/cset.mli b/utils/cset.mli
new file mode 100644
index 0000000000..a7f4cae9c7
--- /dev/null
+++ b/utils/cset.mli
@@ -0,0 +1,9 @@
+(* Sets over types ordered with the default ordering *)
+
+type 'a t
+
+val empty: 'a t
+val mem: 'a -> 'a t -> bool
+val add: 'a -> 'a t -> 'a t
+val remove: 'a -> 'a t -> 'a t
+val elements: 'a t -> 'a list