11. GHC Language Features¶
- 11.1. Language options
- 11.2. Unboxed types and primitive operations
- 11.3. Syntactic extensions
- 11.3.1. Unicode syntax
- 11.3.2. The magic hash
- 11.3.3. Negative literals
- 11.3.4. Fractional looking integer literals
- 11.3.5. Binary integer literals
- 11.3.6. Hexadecimal floating point literals
- 11.3.7. Pattern guards
- 11.3.8. View patterns
- 11.3.9. n+k patterns
- 11.3.10. The recursive do-notation
- 11.3.11. Applicative do-notation
- 11.3.12. Parallel List Comprehensions
- 11.3.13. Generalised (SQL-like) List Comprehensions
- 11.3.14. Monad comprehensions
- 11.3.15. New monadic failure desugaring mechanism
- 11.3.16. Rebindable syntax and the implicit Prelude import
- 11.3.17. Postfix operators
- 11.3.18. Tuple sections
- 11.3.19. Lambda-case
- 11.3.20. Empty case alternatives
- 11.3.21. Multi-way if-expressions
- 11.3.22. Local Fixity Declarations
- 11.3.23. Import and export extensions
- 11.3.24. Summary of stolen syntax
- 11.4. Extensions to data types and type synonyms
- 11.4.1. Data types with no constructors
- 11.4.2. Data type contexts
- 11.4.3. Infix type constructors, classes, and type variables
- 11.4.4. Type operators
- 11.4.5. Liberalised type synonyms
- 11.4.6. Existentially quantified data constructors
- 11.4.7. Declaring data types with explicit constructor signatures
- 11.4.8. Generalised Algebraic Data Types (GADTs)
- 11.5. Extensions to the record system
- 11.6. Extensions to the "deriving" mechanism
- 11.6.1. Deriving instances for empty data types
- 11.6.2. Inferred context for deriving clauses
- 11.6.3. Stand-alone deriving declarations
- 11.6.4. Deriving instances of extra classes (
Data
, etc.) - 11.6.5. Generalised derived instances for newtypes
- 11.6.6. Deriving any other class
- 11.6.7. Deriving strategies
- 11.7. Pattern synonyms
- 11.8. Class and instances declarations
- 11.9. Type families
- 11.10. Datatype promotion
- 11.11. Kind polymorphism and Type-in-Type
- 11.11.1. The difference between
TypeInType
andPolyKinds
- 11.11.2. Overview of kind polymorphism
- 11.11.3. Overview of Type-in-Type
- 11.11.4. Principles of kind inference
- 11.11.5. Complete user-supplied kind signatures and polymorphic recursion
- 11.11.6. Kind inference in closed type families
- 11.11.7. Kind inference in class instance declarations
- 11.11.8. Kind inference in type signatures
- 11.11.9. Explicit kind quantification
- 11.11.10. Kind-indexed GADTs
- 11.11.11. Higher-rank kinds
- 11.11.12. Constraints in kinds
- 11.11.13. The kind
*
- 11.11.14. Inferring dependency in datatype declarations
- 11.11.15. Kind defaulting without
PolyKinds
- 11.11.16. Pretty-printing in the presence of kind polymorphism
- 11.11.1. The difference between
- 11.12. Levity polymorphism
- 11.13. Type-Level Literals
- 11.14. Constraints in types
- 11.15. Extensions to type signatures
- 11.16. Lexically scoped type variables
- 11.17. Bindings and generalisation
- 11.18. Visible type application
- 11.19. Implicit parameters
- 11.20. Arbitrary-rank polymorphism
- 11.21. Impredicative polymorphism
- 11.22. Typed Holes
- 11.23. Partial Type Signatures
- 11.24. Custom compile-time errors
- 11.25. Deferring type errors to runtime
- 11.26. Template Haskell
- 11.27. Arrow notation
- 11.28. Bang patterns and Strict Haskell
- 11.29. Assertions
- 11.30. Static pointers
- 11.31. Pragmas
- 11.31.1.
LANGUAGE
pragma - 11.31.2.
OPTIONS_GHC
pragma - 11.31.3.
INCLUDE
pragma - 11.31.4.
WARNING
andDEPRECATED
pragmas - 11.31.5.
MINIMAL
pragma - 11.31.6.
INLINE
andNOINLINE
pragmas - 11.31.7.
LINE
pragma - 11.31.8.
COLUMN
pragma - 11.31.9.
RULES
pragma - 11.31.10.
SPECIALIZE
pragma - 11.31.11.
SPECIALIZE
instance pragma - 11.31.12.
UNPACK
pragma - 11.31.13.
NOUNPACK
pragma - 11.31.14.
SOURCE
pragma - 11.31.15.
COMPLETE
pragmas - 11.31.16. Disambiguating between multiple
COMPLETE
pragmas - 11.31.17.
OVERLAPPING
,OVERLAPPABLE
,OVERLAPS
, andINCOHERENT
pragmas
- 11.31.1.
- 11.32. Rewrite rules
- 11.33. Special built-in functions
- 11.34. Generic classes
- 11.35. Generic programming
- 11.36. Roles
- 11.37. HasCallStack
- 11.38. Concurrent and Parallel Haskell
- 11.39. Safe Haskell