After this commit, `(+)` is notation for (add) instead of `(fun x y, add x y)`. This change is relevant when defining type class instances such as ```lean instance semigroup_to_is_associative [semigroup α] : is_associative α (*) := ⟨mul_assoc⟩ ```
2 lines
112 B
Text
2 lines
112 B
Text
{eq := eq ℕ, ne := λ (a b : ℕ), ¬a = b} : Eq ℕ
|
||
{eq := λ (a b : ℕ), ¬a ≠ b, ne := ne ℕ} : Eq ℕ
|