lean2/library/data/countable.lean
Leonardo de Moura 77d5657813 refactor(library/algebra/function): move function.lean to init folder
Motivation: this file defines basic things such as function composition.
In the HoTT library, it is located in the init folder.
2015-07-06 07:29:56 -07:00

10 lines
275 B
Text

/-
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
Define countable types
-/
open function
definition countable (A : Type) : Prop := ∃ f : A → nat, injective f