aboutsummaryrefslogtreecommitdiff
path: root/lib/fmap.mli
diff options
context:
space:
mode:
authorppedrot2013-05-14 08:59:11 +0000
committerppedrot2013-05-14 08:59:11 +0000
commit12e1e2267dff48b13f4a8c3ef2527b2135698dbe (patch)
tree575f1f3b07a304944a35ae132716a65fcad0c8bd /lib/fmap.mli
parent182d5a6151a37afed004ac6643926411e672f82a (diff)
Removing Fmap from libraries, it is not used anymore.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16519 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/fmap.mli')
-rw-r--r--lib/fmap.mli23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/fmap.mli b/lib/fmap.mli
deleted file mode 100644
index 2c8dedd7ee..0000000000
--- a/lib/fmap.mli
+++ /dev/null
@@ -1,23 +0,0 @@
-
-module Make : functor (X : Map.OrderedType) ->
-sig
- type key = X.t
- type 'a t
-
-val empty : 'a t
-val is_empty : 'a t -> bool
-val add : key -> 'a -> 'a t -> 'a t
-val find : key -> 'a t -> 'a
-val remove : key -> 'a t -> 'a t
-val mem : key -> 'a t -> bool
-val iter : (key -> 'a -> unit) -> 'a t -> unit
-val map : ('a -> 'b) -> 'a t -> 'b t
-val fold : (key -> 'a -> 'c -> 'c) -> 'a t -> 'c -> 'c
-
-(** Additions with respect to ocaml standard library. *)
-
-val dom : 'a t -> key list
-val rng : 'a t -> 'a list
-val to_list : 'a t -> (key * 'a) list
-end
-