9. GHC Language FeaturesΒΆ
- 9.1. Language options
- 9.2. Unboxed types and primitive operations
- 9.3. Syntactic extensions
- 9.3.1. Unicode syntax
- 9.3.2. The magic hash
- 9.3.3. Negative literals
- 9.3.4. Fractional looking integer literals
- 9.3.5. Binary integer literals
- 9.3.6. Pattern guards
- 9.3.7. View patterns
- 9.3.8. n+k patterns
- 9.3.9. The recursive do-notation
- 9.3.10. Applicative do-notation
- 9.3.11. Parallel List Comprehensions
- 9.3.12. Generalised (SQL-like) List Comprehensions
- 9.3.13. Monad comprehensions
- 9.3.14. New monadic failure desugaring mechanism
- 9.3.15. Rebindable syntax and the implicit Prelude import
- 9.3.16. Postfix operators
- 9.3.17. Tuple sections
- 9.3.18. Lambda-case
- 9.3.19. Empty case alternatives
- 9.3.20. Multi-way if-expressions
- 9.3.21. Local Fixity Declarations
- 9.3.22. Import and export extensions
- 9.3.23. Summary of stolen syntax
- 9.4. Extensions to data types and type synonyms
- 9.4.1. Data types with no constructors
- 9.4.2. Data type contexts
- 9.4.3. Infix type constructors, classes, and type variables
- 9.4.4. Type operators
- 9.4.5. Liberalised type synonyms
- 9.4.6. Existentially quantified data constructors
- 9.4.7. Declaring data types with explicit constructor signatures
- 9.4.8. Generalised Algebraic Data Types (GADTs)
- 9.5. Extensions to the record system
- 9.6. Extensions to the “deriving” mechanism
- 9.6.1. Inferred context for deriving clauses
- 9.6.2. Stand-alone deriving declarations
- 9.6.3. Deriving instances of extra classes (
Data
, etc.) - 9.6.4. Deriving
Functor
instances - 9.6.5. Deriving
Foldable
instances - 9.6.6. Deriving
Traversable
instances - 9.6.7. Deriving
Typeable
instances - 9.6.8. Deriving
Lift
instances - 9.6.9. Generalised derived instances for newtypes
- 9.6.10. Deriving any other class
- 9.6.11. Deriving strategies
- 9.7. Pattern synonyms
- 9.8. Class and instances declarations
- 9.9. Type families
- 9.10. Datatype promotion
- 9.11. Kind polymorphism and Type-in-Type
- 9.11.1. The difference between
-XTypeInType
and-XPolyKinds
- 9.11.2. Overview of kind polymorphism
- 9.11.3. Overview of Type-in-Type
- 9.11.4. Principles of kind inference
- 9.11.5. Complete user-supplied kind signatures and polymorphic recursion
- 9.11.6. Kind inference in closed type families
- 9.11.7. Kind inference in class instance declarations
- 9.11.8. Kind inference in type signatures
- 9.11.9. Explicit kind quantification
- 9.11.10. Kind-indexed GADTs
- 9.11.11. Constraints in kinds
- 9.11.12. The kind
*
- 9.11.13. Inferring dependency in datatype declarations
- 9.11.14. Kind defaulting without
-XPolyKinds
- 9.11.15. Pretty-printing in the presence of kind polymorphism
- 9.11.1. The difference between
- 9.12. Levity polymorphism
- 9.13. Type-Level Literals
- 9.14. Constraints in types
- 9.15. Extensions to type signatures
- 9.16. Lexically scoped type variables
- 9.17. Bindings and generalisation
- 9.18. Visible type application
- 9.19. Implicit parameters
- 9.20. Arbitrary-rank polymorphism
- 9.21. Impredicative polymorphism
- 9.22. Typed Holes
- 9.23. Partial Type Signatures
- 9.24. Custom compile-time errors
- 9.25. Deferring type errors to runtime
- 9.26. Template Haskell
- 9.27. Arrow notation
- 9.28. Bang patterns and Strict Haskell
- 9.29. Assertions
- 9.30. Static pointers
- 9.31. Pragmas
- 9.31.1. LANGUAGE pragma
- 9.31.2.
OPTIONS_GHC
pragma - 9.31.3.
INCLUDE
pragma - 9.31.4.
WARNING
andDEPRECATED
pragmas - 9.31.5. MINIMAL pragma
- 9.31.6. INLINE and NOINLINE pragmas
- 9.31.7.
LINE
pragma - 9.31.8.
COLUMN
pragma - 9.31.9.
RULES
pragma - 9.31.10.
SPECIALIZE
pragma - 9.31.11.
SPECIALIZE
instance pragma - 9.31.12.
UNPACK
pragma - 9.31.13.
NOUNPACK
pragma - 9.31.14.
SOURCE
pragma - 9.31.15.
COMPLETE
pragmas - 9.31.16.
OVERLAPPING
,OVERLAPPABLE
,OVERLAPS
, andINCOHERENT
pragmas
- 9.32. Rewrite rules
- 9.33. Special built-in functions
- 9.34. Generic classes
- 9.35. Generic programming
- 9.36. Roles
- 9.37. HasCallStack
- 9.38. Concurrent and Parallel Haskell
- 9.39. Safe Haskell