13.Β Basic Types
Lean includes a number of built-in types that are specially supported by the compiler.
Some, such as Nat
, additionally have special support in the kernel.
Other types don't have special compiler support per se, but rely in important ways on the internal representation of types for performance reasons.
- 13.1. Natural Numbers
- 13.2. Integers
- 13.3. Finite Natural Numbers
- 13.4. Fixed-Precision Integer Types
- 13.5. Bitvectors
- 13.6. Floating-Point Numbers
- 13.7. Characters
-
13.8. Strings
- 13.8.1. Logical Model
- 13.8.2. Run-Time Representation
- 13.8.3. Syntax
-
13.8.4. API Reference
- 13.8.4.1. Constructing
- 13.8.4.2. Conversions
- 13.8.4.3. Properties
- 13.8.4.4. Positions
- 13.8.4.5. Lookups and Modifications
- 13.8.4.6. Folds and Aggregation
- 13.8.4.7. Comparisons
- 13.8.4.8. Manipulation
- 13.8.4.9. Iterators
- 13.8.4.10. Substrings
- 13.8.4.11. Proof Automation
- 13.8.4.12. Metaprogramming
- 13.8.4.13. Encodings
- 13.8.5. FFI
- 13.9. The Unit Type
- 13.10. The Empty Type
- 13.11. Booleans
- 13.12. Optional Values
- 13.13. Tuples
- 13.14. Sum Types
-
13.15. Linked Lists
- 13.15.1. Syntax
- 13.15.2. Performance Notes
-
13.15.3. API Reference
- 13.15.3.1. Predicates and Relations
- 13.15.3.2. Constructing Lists
- 13.15.3.3. Length
- 13.15.3.4. Head and Tail
- 13.15.3.5. Lookups
- 13.15.3.6. Conversions
- 13.15.3.7. Modification
- 13.15.3.8. Sorting
- 13.15.3.9. Iteration
- 13.15.3.10. Transformation
- 13.15.3.11. Filtering
- 13.15.3.12. Partitioning
- 13.15.3.13. Element Predicates
- 13.15.3.14. Comparisons
- 13.15.3.15. Termination Helpers
- 13.15.3.16. Proof Automation
-
13.16. Arrays
- 13.16.1. Logical Model
- 13.16.2. Run-Time Representation
- 13.16.3. Syntax
-
13.16.4. API Reference
- 13.16.4.1. Constructing Arrays
- 13.16.4.2. Size
- 13.16.4.3. Lookups
- 13.16.4.4. Conversions
- 13.16.4.5. Modification
- 13.16.4.6. Sorted Arrays
- 13.16.4.7. Iteration
- 13.16.4.8. Transformation
- 13.16.4.9. Filtering
- 13.16.4.10. Partitioning
- 13.16.4.11. Element Predicates
- 13.16.4.12. Comparisons
- 13.16.4.13. Termination Helpers
- 13.16.4.14. Proof Automation
- 13.16.5. Sub-Arrays
- 13.16.6. FFI
- 13.17. Subtypes
- 13.18. Lazy Computations
- 13.19. Tasks and Threads