sqel-0.0.1.0: Guided derivation for Hasql statements
Safe HaskellSafe-Inferred
LanguageHaskell2010

Sqel.Kind

Description

 
Synopsis
  • type family l ++ r where ...

Documentation

type family l ++ r where ... infixr 5 Source #

Append two type lists.

Equations

(a ': l) ++ r = a ': (l ++ r) 
'[] ++ r = r