aboutsummaryrefslogtreecommitdiff
path: root/lib/cString.mli
diff options
context:
space:
mode:
authorppedrot2012-12-14 11:05:35 +0000
committerppedrot2012-12-14 11:05:35 +0000
commitd9f9673d90371ead668863221c1202de49ab1782 (patch)
tree3fca5420ce4404972f87ea05d2000e3fd8e89017 /lib/cString.mli
parent9a0c61b81a2d9c0024b20a6c7ad8af01026739b0 (diff)
Moved Stringset and Stringmap to String namespace.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16068 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/cString.mli')
-rw-r--r--lib/cString.mli7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/cString.mli b/lib/cString.mli
index 9f4a47f19d..18679d3108 100644
--- a/lib/cString.mli
+++ b/lib/cString.mli
@@ -87,6 +87,13 @@ sig
val is_sub : string -> string -> int -> bool
(** [is_sub p s off] tests whether [s] contains [p] at offset [off]. *)
+
+ module Set : Set.S with type elt = t
+ (** Finite sets on [string] *)
+
+ module Map : Map.S with type key = t
+ (** Finite maps on [string] *)
+
end
include ExtS