Skip to content

Commit

Permalink
feat: forward-port mathlib#18551 (#2669)
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Mar 6, 2023
1 parent e8dd45a commit 7f714c6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Mathlib/Topology/Homeomorph.lean
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ theorem ext {h h' : α ≃ₜ β} (H : ∀ x, h x = h' x) : h = h' :=
FunLike.ext _ _ H
#align homeomorph.ext Homeomorph.ext

@[simp]
lemma symm_symm (h : α ≃ₜ β) : h.symm.symm = h := by
ext
rfl

/-- Identity map as a homeomorphism. -/
@[simps! (config := { fullyApplied := false }) apply]
protected def refl (α : Type _) [TopologicalSpace α] : α ≃ₜ α where
Expand Down

0 comments on commit 7f714c6

Please sign in to comment.