packages feed

sqel-0.0.1.0: lib/Sqel/Kind.hs

-- | Description: Type functions
module Sqel.Kind where

-- | Append two type lists.
type family (++) l r where
  (a : l) ++ r = a : (l ++ r)
  '[] ++ r = r

infixr 5 ++