aboutsummaryrefslogtreecommitdiff
path: root/proofs/miscprint.mli
diff options
context:
space:
mode:
authorMaxime Dénès2017-07-20 14:50:38 +0200
committerMaxime Dénès2017-07-20 14:50:38 +0200
commit011a2fe3ab6841d9c7ad700e6d298d5cffe72db5 (patch)
tree9b71011ec3cb9aae309b32c3173579632efdc143 /proofs/miscprint.mli
parent362ed8371062cea08ae2d7e5842091bf184393cb (diff)
parent9051c1618062ce014719de5c3f73832e9a282a4d (diff)
Merge PR #899: [general] Move files to directories so they match linking order.
Diffstat (limited to 'proofs/miscprint.mli')
-rw-r--r--proofs/miscprint.mli37
1 files changed, 37 insertions, 0 deletions
diff --git a/proofs/miscprint.mli b/proofs/miscprint.mli
new file mode 100644
index 0000000000..21d410c7b0
--- /dev/null
+++ b/proofs/miscprint.mli
@@ -0,0 +1,37 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2017 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+open Misctypes
+
+(** Printing of [intro_pattern] *)
+
+val pr_intro_pattern :
+ ('a -> Pp.std_ppcmds) -> 'a intro_pattern_expr Loc.located -> Pp.std_ppcmds
+
+val pr_or_and_intro_pattern :
+ ('a -> Pp.std_ppcmds) -> 'a or_and_intro_pattern_expr -> Pp.std_ppcmds
+
+val pr_intro_pattern_naming : intro_pattern_naming_expr -> Pp.std_ppcmds
+
+(** Printing of [move_location] *)
+
+val pr_move_location :
+ ('a -> Pp.std_ppcmds) -> 'a move_location -> Pp.std_ppcmds
+
+val pr_bindings :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a bindings -> Pp.std_ppcmds
+
+val pr_bindings_no_with :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a bindings -> Pp.std_ppcmds
+
+val pr_with_bindings :
+ ('a -> Pp.std_ppcmds) ->
+ ('a -> Pp.std_ppcmds) -> 'a * 'a bindings -> Pp.std_ppcmds
+