aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/pp.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-06 18:50:41 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-10 11:53:22 +0100
commit791b6a26a23b71cc1cba364977cc825028c8ebc9 (patch)
treecaa2d5d483e8df6e010d0fdedce57241b420a376 /lib/pp.mli
parente760752eeba4593a5f9bb7b123454cd54f40eff9 (diff)
Adding a dynamic tag type in Pp.
Diffstat (limited to 'lib/pp.mli')
-rw-r--r--lib/pp.mli19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/pp.mli b/lib/pp.mli
index f29f9b2f3..d5983c4a2 100644
--- a/lib/pp.mli
+++ b/lib/pp.mli
@@ -82,6 +82,25 @@ val tclose : unit -> std_ppcmds
(** {6 Opening and closing of tags} *)
+module Tag :
+sig
+ type t
+ (** Type of tags. Tags are dynamic types comparable to {Dyn.t}. *)
+
+ type 'a key
+ (** Keys used to inject tags *)
+
+ val create : string -> 'a key
+ (** Create a key with the given name. Two keys cannot share the same name, if
+ ever this is the case this function raises an assertion failure. *)
+
+ val inj : 'a -> 'a key -> t
+ (** Inject an object into a tag. *)
+
+ val prj : t -> 'a key -> 'a option
+ (** Project an object from a tag. *)
+end
+
val tag : string -> std_ppcmds -> std_ppcmds
val open_tag : string -> std_ppcmds
val close_tag : unit -> std_ppcmds