What is the DataKinds extension of Haskell?

前端 未结 2 1171
我在风中等你
我在风中等你 2020-12-07 23:52

I am trying to find an explanation of the DataKinds extension that will make sense to me having come from only having read Learn You a Haskell. Is there a standard source th

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 00:45

    Well let's start with the basics

    Kinds

    Kinds are the types of types*, for example

    Int :: *
    Bool :: *
    Maybe :: * -> *
    

    Notice that -> is overloaded to mean "function" at the kind level too. So * is the kind of a normal Haskell type.

    We can ask GHCi to print the kind of something with :k.

    Data Kinds

    Now this not very useful, since we have no way to make our own kinds! With DataKinds, when we write

     data Nat = S Nat | Z
    

    GHC will promote this to create the corresponding kind Nat and

     Prelude> :k S
     S :: Nat -> Nat
     Prelude> :k Z
     Z :: Nat
    

    So DataKinds makes the kind system extensible.

    Uses

    Let's do the prototypical kinds example using GADTs

     data Vec :: Nat -> * where
        Nil  :: Vec Z
        Cons :: Int -> Vec n -> Vec (S n)
    

    Now we see that our Vec type is indexed by length.

    That's the basic, 10k foot overview.

    * This actually continues, Values : Types : Kinds : Sorts ... Some languages (Coq, Agda ..) support this infinite stack of universes, but Haskell lumps everything into one sort.

提交回复
热议问题