Types that are empty #
In this file we define a typeclass IsEmpty
, which expresses that a type has no elements.
Main declaration #
IsEmpty
: a typeclass that expresses that a type is empty.
theorem
Function.Surjective.isEmpty
{α : Sort u_1}
{β : Sort u_2}
[IsEmpty α]
{f : α → β}
(hf : Surjective f)
:
IsEmpty β
Eliminate out of a type that IsEmpty
(without using projection notation).
Instances For
@[simp]
@[simp]
@[simp]
theorem
Function.extend_of_isEmpty
{α : Sort u_1}
{β : Sort u_2}
{γ : Sort u_3}
[IsEmpty α]
(f : α → β)
(g : α → γ)
(h : β → γ)
:
@[simp]
@[simp]