We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49778e3 commit 9d7c744Copy full SHA for 9d7c744
theories/Data/Prop.v
@@ -67,6 +67,13 @@ Lemma impl_iff
67
((P -> Q) <-> (R -> S)).
68
Proof. clear. intuition. Qed.
69
70
+Lemma impl_eq : forall (P Q : Prop), P = Q -> (P -> Q).
71
+Proof. clear. intros; subst; auto. Qed.
72
+
73
+Lemma uncurry : forall (P Q R : Prop),
74
+ (P /\ Q -> R) <-> (P -> Q -> R).
75
+Proof. clear. tauto. Qed.
76
77
78
(** Forall **)
79
Lemma forall_iff : forall T P Q,
0 commit comments