singletons 2.5
This is the README file for the singletons library. This file contains all the documentation for the definitions and functions in the library.
The singletons library was written by Richard Eisenberg, rae@cs.brynmawr.edu, and with significant contributions by Jan Stolarek, jan.stolarek@p.lodz.pl. There are two papers that describe the library. Original one, Dependently typed programming with singletons, is available here and will be referenced in this documentation as the "singletons paper". A follow-up paper, Promoting Functions to Type Families in Haskell, is available here and will be referenced in this documentation as the "promotion paper".
Ryan Scott, ryan.gl.scott@gmail.com, is an active maintainer.
Purpose of the singletons library
The library contains a definition of singleton types, which allow programmers to use dependently typed techniques to enforce rich constraints among the types in their programs. See the singletons paper for a more thorough introduction.
The package also allows promotion of term-level functions to type-level
equivalents. Accordingly, it exports a Prelude of promoted and singletonized
functions, mirroring functions and datatypes found in Prelude, Data.Bool,
Data.Maybe, Data.Either, Data.Tuple and Data.List. See the promotion
paper for a more thorough introduction.
Compatibility
The singletons library requires GHC 8.6.1 or greater. Any code that uses the singleton generation primitives needs to enable a long list of GHC extensions. This list includes, but is not necessarily limited to, the following:
DataKindsDefaultSignaturesEmptyCaseExistentialQuantificationFlexibleContextsFlexibleInstancesGADTsInstanceSigsKindSignaturesNoStarIsTypePolyKindsQuantifiedConstraintsRankNTypesScopedTypeVariablesStandaloneDerivingTemplateHaskellTypeFamiliesTypeOperatorsUndecidableInstances
In particular, NoStarIsType is needed to use the * type family from the
PNum class because with StarIsType enabled, GHC thinks * is a synonym
for Type.
You may also want
-Wno-redundant-constraints
as the code that singletons generates uses redundant constraints, and there
seems to be no way, without a large library redesign, to avoid this.
Modules for singleton types
Data.Singletons exports all the basic singletons definitions. Import this
module if you are not using Template Haskell and wish only to define your
own singletons.
Data.Singletons.TH exports all the definitions needed to use the Template
Haskell code to generate new singletons.
Data.Singletons.Prelude re-exports Data.Singletons along with singleton
definitions for various Prelude types. This module provides a singletonized
equivalent of the real Prelude. Note that not all functions from original
Prelude could be turned into singletons.
Data.Singletons.Prelude.* modules provide singletonized equivalents of
definitions found in the following base library modules: Data.Bool,
Data.Maybe, Data.Either, Data.List, Data.Tuple, Data.Void and
GHC.Base. We also provide singletonized Eq, Ord, Show, Enum, and
Bounded typeclasses.
Data.Singletons.Decide exports type classes for propositional equality.
Data.Singletons.TypeLits exports definitions for working with GHC.TypeLits.
Modules for function promotion
Modules in Data.Promotion namespace provide functionality required for
function promotion. They mostly re-export a subset of definitions from
respective Data.Singletons modules.
Data.Promotion.TH exports all the definitions needed to use the Template
Haskell code to generate promoted definitions.
Data.Promotion.Prelude and Data.Promotion.Prelude.* modules re-export all
promoted definitions from respective Data.Singletons.Prelude
modules. Data.Promotion.Prelude.List adds a significant amount of functions
that couldn't be singletonized but can be promoted. Some functions still don't
promote - these are documented in the source code of the module. There is also
Data.Promotion.Prelude.Bounded module that provides promoted PBounded
typeclass.
Functions to generate singletons
The top-level functions used to generate singletons are documented in the
Data.Singletons.TH module. The most common case is just calling singletons,
which I'll describe here:
singletons :: Q [Dec] -> Q [Dec]Generates singletons from the definitions given. Because singleton generation requires promotion, this also promotes all of the definitions given to the type level.
Usage example:
$(singletons [d|
data Nat = Zero | Succ Nat
pred :: Nat -> Nat
pred Zero = Zero
pred (Succ n) = n
|])Definitions used to support singletons
Please refer to the singletons paper for a more in-depth explanation of these definitions. Many of the definitions were developed in tandem with Iavor Diatchki.
data family Sing (a :: k)The data family of singleton types. A new instance of this data family is generated for every new singleton type.
class SingI (a :: k) where
sing :: Sing aA class used to pass singleton values implicitly. The sing method produces
an explicit singleton value.
data SomeSing k where
SomeSing :: Sing (a :: k) -> SomeSing kThe SomeSing type wraps up an existentially-quantified singleton. Note that
the type parameter a does not appear in the SomeSing type. Thus, this type
can be used when you have a singleton, but you don't know at compile time what
it will be. SomeSing Thing is isomorphic to Thing.
class SingKind k where
type Demote k :: *
fromSing :: Sing (a :: k) -> Demote k
toSing :: Demote k -> SomeSing kThis class is used to convert a singleton value back to a value in the
original, unrefined ADT. The fromSing method converts, say, a
singleton Nat back to an ordinary Nat. The toSing method produces
an existentially-quantified singleton, wrapped up in a SomeSing.
The Demote associated
kind-indexed type family maps the kind Nat back to the type Nat.
data SingInstance (a :: k) where
SingInstance :: SingI a => SingInstance a
singInstance :: Sing a -> SingInstance aSometimes you have an explicit singleton (a Sing) where you need an implicit
one (a dictionary for SingI). The SingInstance type simply wraps a SingI
dictionary, and the singInstance function produces this dictionary from an
explicit singleton. The singInstance function runs in constant time, using
a little magic.
Equality classes
There are two different notions of equality applicable to singletons: Boolean equality and propositional equality.
-
Boolean equality is implemented in the type family
(:==)(which is actually a synonym for the type family(==)fromData.Type.Equality) and the classSEq. See theData.Singletons.Prelude.Eqmodule for more information. -
Propositional equality is implemented through the constraint
(~), the type(:~:), and the classSDecide. See modulesData.Type.EqualityandData.Singletons.Decidefor more information.
Which one do you need? That depends on your application. Boolean equality has the advantage that your program can take action when two types do not equal, while propositional equality has the advantage that GHC can use the equality of types during type inference.
Instances of both SEq and SDecide are generated when singletons is called
on a datatype that has deriving Eq. You can also generate these instances
directly through functions exported from Data.Singletons.TH.
Show classes
Promoted and singled versions of the Show class (PShow and SShow,
respectively) are provided in the Data.Singletons.Prelude.Show module. In
addition, there is a ShowSing constraint synonym provided in the
Data.Singletons.ShowSing module:
type ShowSing k = (forall z. Show (Sing (z :: k))This facilitates the ability to write Show instances for Sing instances.
What distinguishes all of these Shows? Let's use the False constructor as
an example. If you used the PShow Bool instance, then the output of calling
Show_ on False is "False", much like the value-level Show Bool instance
(similarly for the SShow Bool instance). However, the Show (Sing (z :: Bool))
instance (i.e., ShowSing Bool) is intended for printing the value of the
singleton constructor SFalse, so calling show SFalse yields "SFalse".
Instance of PShow, SShow, and Show (for the singleton type) are generated
when singletons is called on a datatype that has deriving Show. You can also
generate these instances directly through functions exported from
Data.Singletons.TH.
A promoted and singled Show instance is provided for Symbol, but it is only
a crude approximation of the value-level Show instance for String. On the
value level, showing Strings escapes special characters (such as double
quotes), but implementing this requires pattern-matching on character literals,
something which is currently impossible at the type level. As a consequence, the
type-level Show instance for Symbols does not do any character escaping.
Errors
The singletons library provides two different ways to handle errors:
-
The
Errortype family, fromData.Singletons.TypeLits:type family Error (str :: a) :: k where {}
This is simply an empty, closed type family, which means that it will fail to reduce regardless of its input. The typical use case is giving it a
Symbolas an argument, so that something akin toError "This is an error message"appears in error messages. -
The
TypeErrortype family, fromData.Singletons.TypeError. This is a drop-in replacement forTypeErrorfromGHC.TypeLitswhich can be used at both the type level and the value level (via thetypeErrorfunction).Unlike
Error,TypeErrorwill result in an actual compile-time error message, which may be more desirable depending on the use case.
Pre-defined singletons
The singletons library defines a number of singleton types and functions by default:
BoolMaybeEitherOrdering()- tuples up to length 7
- lists
These are all available through Data.Singletons.Prelude. Functions that
operate on these singletons are available from modules such as Data.Singletons.Bool
and Data.Singletons.Maybe.
Promoting functions
Function promotion allows to generate type-level equivalents of term-level definitions. Almost all Haskell source constructs are supported -- see last section of this README for a full list.
Promoted definitions are usually generated by calling promote function:
$(promote [d|
data Nat = Zero | Succ Nat
pred :: Nat -> Nat
pred Zero = Zero
pred (Succ n) = n
|])Every promoted function and data constructor definition comes with a set of
so-called "symbols". These are required to represent partial application at the
type level. Each function gets N+1 symbols, where N is the arity. Symbols
represent application of between 0 to N arguments. When calling any of the
promoted definitions it is important refer to it using their symbol
name. Moreover, there is new function application at the type level represented
by Apply type family. Symbol representing arity X can have X arguments passed
in using normal function application. All other parameters must be passed by
calling Apply.
Users also have access to Data.Promotion.Prelude and its submodules (Base,
Bool, Either, List, Maybe and Tuple). These provide promoted versions
of function found in GHC's base library.
Note that GHC resolves variable names in Template Haskell quotes. You cannot then use an undefined identifier in a quote, making idioms like this not work:
type family Foo a where ...
$(promote [d| ... foo x ... |])In this example, foo would be out of scope.
Refer to the promotion paper for more details on function promotion.
Classes and instances
This is best understood by example. Let's look at a stripped down Ord:
class Eq a => Ord a where
compare :: a -> a -> Ordering
(<) :: a -> a -> Bool
x < y = case x `compare` y of
LT -> True
EQ -> False
GT -> FalseThis class gets promoted to a "kind class" thus:
class PEq a => POrd a where
type Compare (x :: a) (y :: a) :: Ordering
type (:<) (x :: a) (y :: a) :: Bool
type x :< y = ... -- promoting `case` is yucky.Note that default method definitions become default associated type family instances. This works out quite nicely.
We also get this singleton class:
class SEq a => SOrd a where
sCompare :: forall (x :: a) (y :: a). Sing x -> Sing y -> Sing (Compare x y)
(%:<) :: forall (x :: a) (y :: a). Sing x -> Sing y -> Sing (x :< y)
default (%:<) :: forall (x :: a) (y :: a).
((x :< y) ~ {- RHS from (:<) above -})
=> Sing x -> Sing y -> Sing (x :< y)
x %:< y = ... -- this is a bit yucky tooNote that a singletonized class needs to use default signatures, because
type-checking the default body requires that the default associated type
family instance was used in the promoted class. The extra equality constraint
on the default signature asserts this fact to the type checker.
Instances work roughly similarly.
instance Ord Bool where
compare False False = EQ
compare False True = LT
compare True False = GT
compare True True = EQ
instance POrd Bool where
type Compare 'False 'False = 'EQ
type Compare 'False 'True = 'LT
type Compare 'True 'False = 'GT
type Compare 'True 'True = 'EQ
instance SOrd Bool where
sCompare :: forall (x :: a) (y :: a). Sing x -> Sing y -> Sing (Compare x y)
sCompare SFalse SFalse = SEQ
sCompare SFalse STrue = SLT
sCompare STrue SFalse = SGT
sCompare STrue STrue = SEQThe only interesting bit here is the instance signature. It's not necessary in such a simple scenario, but more complicated functions need to refer to scoped type variables, which the instance signature can bring into scope. The defaults all just work.
On names
The singletons library has to produce new names for the new constructs it generates. Here are some examples showing how this is done:
-
original datatype:
Natpromoted kind:
Natsingleton type:
SNat(which is really a synonym forSing) -
original datatype:
/\promoted kind:
/\singleton type:
%/\ -
original constructor:
Succpromoted type:
'Succ(you can useSuccwhen unambiguous)singleton constructor:
SSuccsymbols:
SuccSym0,SuccSym1 -
original constructor:
:+:promoted type:
':+:singleton constructor:
:%+:symbols:
:+:@#@$,:+:@#@$$,:+:@#@$$$ -
original value:
predpromoted type:
Predsingleton value:
sPredsymbols:
PredSym0,PredSym1 -
original value:
+promoted type:
+singleton value:
%+symbols:
+@#@$,+@#@$$,+@#@$$$ -
original class:
Numpromoted class:
PNumsingleton class:
SNum -
original class:
~>promoted class:
#~>singleton class:
%~>
Special names
There are some special cases, listed below (with asterisks* denoting special treatment):
-
original datatype:
[]promoted kind:
[]singleton type*:
SList -
original constructor:
[]promoted type:
'[]singleton constructor*:
SNilsymbols*:
NilSym0 -
original constructor:
:promoted type:
':singleton constructor*:
SConssymbols:
:@#@$,:@#@$$,:@#@$$$ -
original datatype:
(,)promoted kind:
(,)singleton type*:
STuple2 -
original constructor:
(,)promoted type:
'(,)singleton constructor*:
STuple2symbols*:
Tuple2Sym0,Tuple2Sym1,Tuple2Sym2All tuples (including the 0-tuple, unit) are treated similarly.
-
original value:
(.)promoted type*:
(:.)singleton value:
(%.)symbols:
(.@#@$),(.@#@$$),(.@#@$$$)The promoted type is special because GHC can't parse a type named
(.). -
original value:
(!)promoted type*:
(:!)singleton value:
(%!)symbols:
(!@#@$),(!@#@$$),(!@#@$$$)The promoted type is special because GHC can't parse a type named
(!). -
original value:
___foopromoted type*:
US___foo("US" stands for "underscore")singleton value*:
___sfoosymbols*:
US___fooSym0All functions that begin with leading underscores are treated similarly.
Supported Haskell constructs
The following constructs are fully supported:
- variables
- tuples
- constructors
- if statements
- infix expressions and types
_patterns- aliased patterns
- lists (including list comprehensions)
do-notation- sections
- undefined
- error
- deriving
Eq,Ord,Show,Bounded,Enum,Functor,Foldable, andTraversable, as well as thestockandanyclassderiving strategies - class constraints (though these sometimes fail with
let,lambda, andcase) - literals (for
NatandSymbol), including overloaded number literals - unboxed tuples (which are treated as normal tuples)
- records
- pattern guards
- case
- let
- lambda expressions
!and~patterns (silently but successfully ignored during promotion)- class and instance declarations
- scoped type variables
- signatures (e.g.,
(x :: Maybe a)) in expressions and patterns - higher-kinded type variables (see below)
- finite arithmetic sequences (see below)
- functional dependencies (with limitations -- see below)
- type families (with limitations -- see below)
Higher-kinded type variables in class/data declarations must be annotated
explicitly. This is due to GHC's handling of complete
user-specified kind signatures, or CUSKs.
Briefly, singletons has a hard
time conforming to the precise rules that GHC imposes around CUSKs and so
needs a little help around kind inference here. See
this pull request for more
background.
singletons is slightly more conservative with respect to deriving than GHC is.
The stock classes listed above (Eq, Ord, Show, Bounded, Enum, Functor,
Foldable, and Traversable) are the only ones that singletons will derive
without an explicit deriving strategy. To do anything more exotic, one must
explicitly indicate one's intentions by using the DerivingStrategies extension.
singletons fully supports the anyclass strategy as well as the stock strategy
(at least, for the classes listed above). singletons does not support the
newtype strategy, as there is not an equivalent of coerce at the type level.
singletons has partial support for arithmetic sequences (which desugar to
methods from the Enum class under the hood). Finite sequences (e.g.,
[0..42]) are fully supported. However, infinite sequences (e.g., [0..]),
which desugar to calls to enumFromTo or enumFromThenTo, are not supported,
as these would require using infinite lists at the type level.
The following constructs are supported for promotion but not singleton generation:
-
datatypes with constructors which have contexts. For example, the following datatype does not singletonize:
data T a where MkT :: Show a => a -> T a
Constructors like these do not interact well with the current design of the
SingKindclass. But see this bug report, which proposes a redesign forSingKind(in a future version of GHC with certain bugfixes) which could permit constructors with equality constraints. -
overlapping patterns. Note that overlapping patterns are sometimes not obvious. For example, the
filterfunction does not singletonize due to overlapping patterns:filter :: (a -> Bool) -> [a] -> [a] filter _pred [] = [] filter pred (x:xs) | pred x = x : filter pred xs | otherwise = filter pred xs
Overlap is caused by
otherwisecatch-all guard, which is always true and thus overlaps withpred xguard.Another non-obvious source of overlapping patterns comes from partial pattern matches in
do-notation. For example:f :: [()] f = do Just () <- [Nothing] return ()
This has overlap because the partial pattern match desugars to the following:
f :: [()] f = case [Nothing] of Just () -> return () _ -> fail "Partial pattern match in do notation"
Here, it is more evident that the catch-all pattern
_overlaps with the one above it.
The following constructs are not supported:
- datatypes that store arrows,
Nat, orSymbol - literals (limited support)
Why are these out of reach?
As described in the promotion paper, promotion of datatypes that store arrows is currently impossible. So if you have a declaration such as
data Foo = Bar (Bool -> Maybe Bool)you will quickly run into errors.
Literals are problematic because we rely on GHC's built-in support, which
currently is limited. Functions that operate on strings will not work because
type level strings are no longer considered lists of characters. Function
working on integer literals can be promoted by rewriting them to use
Nat. Since Nat does not exist at the term level it will only be possible to
use the promoted definition, but not the original, term-level one.
This is the same line of reasoning that forbids the use of Nat or Symbol
in datatype definitions. But, see this bug
report for a workaround.
Support for *
The built-in Haskell promotion mechanism does not yet have a full story around
the kind * (the kind of types that have values). Ideally, promoting some form
of TypeRep would yield *, but the implementation of TypeRep would have to be
updated for this to really work out. In the meantime, users who wish to
experiment with this feature have two options:
-
The module
Data.Singletons.TypeRepTYPEhas all the definitions possible for making*the promoted version ofTypeRep, asTypeRepis currently implemented. The singleton associated withTypeRephas one constructor:newtype instance Sing :: forall (rep :: RuntimeRep). TYPE rep -> Type where STypeRep :: forall (rep :: RuntimeRep) (a :: TYPE rep). TypeRep a -> Sing a
(Recall that
type * = TYPE LiftedRep.) Thus, aTypeRepis stored in the singleton constructor. However, any datatypes that storeTypeReps will not generally work as expected; the built-in promotion mechanism will not promoteTypeRepto*. -
The module
Data.Singletons.CustomStarallows the programmer to define a subset of types with which to work. See the Haddock documentation for the functionsingletonStarfor more info.
Known bugs
- Record updates don't singletonize
- Inference dependent on functional dependencies is unpredictably bad. The problem is that a use of an associated type family tied to a class with fundeps doesn't provoke the fundep to kick in. This is GHC's problem, in the end.
- Singled code that contains uses type families is likely to fail due to GHC Trac #12564. Note that singling type family declarations themselves is fine (and often desired, since that produces defunctionalization symbols for them).