From 748d716efb2f2f75946c8386e441ce1789806a39 Mon Sep 17 00:00:00 2001
From: Enrico Tassi
Date: Wed, 22 May 2019 13:43:08 +0200
Subject: htmldoc regenerated
---
docs/htmldoc/mathcomp.ssreflect.ssreflect.html | 107 +++++++++++++++++++++++++
1 file changed, 107 insertions(+)
(limited to 'docs/htmldoc/mathcomp.ssreflect.ssreflect.html')
diff --git a/docs/htmldoc/mathcomp.ssreflect.ssreflect.html b/docs/htmldoc/mathcomp.ssreflect.ssreflect.html
index db045f6..7772d24 100644
--- a/docs/htmldoc/mathcomp.ssreflect.ssreflect.html
+++ b/docs/htmldoc/mathcomp.ssreflect.ssreflect.html
@@ -24,6 +24,113 @@
+
+
+ Local additions:
+ nonPropType == an interface for non-Prop Types: a nonPropType coerces
+ to a Type, and only types that do not have sort
+ Prop are canonical nonPropType instances. This is
+ useful for applied views.
+> This will become standard with the Coq v8.11 SSReflect core library.
+ deprecate old new == new, but warning that old is deprecated and new
+ should be used instead.
+> Usage: Notation old := (deprecate old new) (only parsing).
+> Caveat: deprecate old new only inherits new's maximal implicits;
+ on-demand implicits should be added after : (deprecate old new _).
+> Caveat 2: if premises or conclusions need to be adjusted, of for
+ non-prenex implicits, use the idiom:
+ Notation old := ((fun a1 a2 ... => deprecate old new a1 a2 ...)
+ _ ... _) (only printing).
+ where all the implicit a_i's occur first, and correspond to the
+ trailing 's, making sure deprecate old new is fully applied and
+ there are no implicits inside the (fun .. => ..) expression. This
+ is to avoid triggering a bug in SSReflect elaboration that is
+ triggered by such evars under binders.
+ Import Deprecation.Silent :: turn off deprecation warning messages.
+ Import Deprecation.Reject :: raise an error instead of only warning.
+
+