Commit 2022-11-06 08:14 aff50f9d
View on Github →feat: port init/cc_lemmas.lean (#532) I started porting logic/lemmas.lean, but found that I needed cc_lemmas.lean first. Compare to
- the Lean 3 version: https://github.com/leanprover-community/lean/blob/fc13c8c72a15dab71a2c2b31410c2cadc3526bd7/library/init/cc_lemmas.lean
- the lean3port version: https://github.com/leanprover-community/lean/blob/fc13c8c72a15dab71a2c2b31410c2cadc3526bd7/library/init/cc_lemmas.lean
The main adjustments I needed to make were of the form
(true_iff_iff _)
->true_iff_iff
, because the mathlib4 version oftrue_iff_iff
(and similar lemmas) takes its argument implicitly, which the mathlib3 version takes it explicitly.