We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff3b89 commit 16f84c6Copy full SHA for 16f84c6
Mathlib/Topology/ContinuousMap/Basic.lean
@@ -170,6 +170,12 @@ def _root_.Homeomorph.continuousMapCongr {X₁ X₂ Y₁ Y₂ : Type*}
170
lemma mk_apply {X Y : Type*} [TopologicalSpace X] [TopologicalSpace Y] (f : X → Y)
171
(hf : Continuous f) (x : X) : { toFun := f, continuous_toFun := hf : C(X, Y) } x = f x:= by rfl
172
173
+/-- The unique map from an empty type, as a bundled continuous map. -/
174
+@[simps]
175
+def empty {«∅»} X
176
+ [TopologicalSpace «∅»] [h₀ : IsEmpty «∅»] [TopologicalSpace X] : C(«∅», X) where
177
+ toFun := h₀.elim
178
+
179
section Prod
180
181
variable {α₁ α₂ β₁ β₂ : Type*} [TopologicalSpace α₁] [TopologicalSpace α₂] [TopologicalSpace β₁]
0 commit comments