Coercing sets to types. #
This file defines Set.Elem s
as the type of all elements of the set s
.
More advanced theorems about these definitions are located in other files in Mathlib/Data/Set
.
Main definitions #
Set.Elem
: coercion of a set to a type; it is reducibly equal to{x // x ∈ s}
;
Coercion from a set to the corresponding subtype.
Equations
- Set.instCoeSortType = { coe := Set.Elem }