diff --git a/prelude/option.v b/prelude/option.v index c045491ca67bf860d31e3aa9dffcd236c67afeed..66fe22107bdffb6c5baad967423adf6b7c036299 100644 --- a/prelude/option.v +++ b/prelude/option.v @@ -190,10 +190,10 @@ Proof. - intros ?%symmetry%equiv_None. done. - intros (? & ? & ?). done. Qed. -Lemma fmap_Some_equiv' {A B} `{Equiv B} `{!Equivalence ((≡) : relation B)} +Lemma fmap_Some_equiv_1 {A B} `{Equiv B} `{!Equivalence ((≡) : relation B)} (f : A → B) mx y : f <$> mx ≡ Some y → ∃ x, mx = Some x ∧ y ≡ f x. -Proof. intros. apply fmap_Some_equiv. done. Qed. +Proof. by rewrite fmap_Some_equiv. Qed. Lemma fmap_None {A B} (f : A → B) mx : f <$> mx = None ↔ mx = None. Proof. by destruct mx. Qed. Lemma option_fmap_id {A} (mx : option A) : id <$> mx = mx.