Commit 2026-03-01 21:22 f08eb80d
View on Github →chore(*): reduce defeq abuse about Set (#35795)
Set αvsα → Prop- unifying
{x // p x}withElem {x | p x}Some changes replaceh.symmwith.symm h. This happens whenhis anIffof two predicates about sets (e.g.,mem_iUnion), but it gets unified with anIffwith LHS using predicates and RHS usingsetOf. With.symm h, Lean unifiessusing LHS, then unfolds membership. With the old spelling, it tries to unify the old LHS with an expression involving membership and fails once we turnSetinto a 1-field structure.