lean2/library/standard/data/data.md

21 lines
423 B
Markdown
Raw Normal View History

data
====
Various datatypes.
Basic types:
* [empty](empty.lean) : the empty type
* [unit](unit.lean) : the singleton type
* [bool](bool/bool.md) : the boolean values
* [num](num.lean) : generic numerals
* [string](string.lean) : ascii strings
* [nat](nat/nat.md) : the natural numbers
* [int](int/int.md) : the integers
Constructors:
* [option](option.lean)
* [pair](pair.lean)
* [list](list/list.md)
* [set](set.lean)