apiary-0.17.0: Simple and type safe web framework that can be automatically generate API documentation.
Data.Apiary.SList
data SList as where Source
Constructors
Instances
type family All c as :: Constraint Source
type family Apply as r Source
type Fn c a = Apply (Reverse c) a Source
apply :: Fn c r -> SList c -> r Source
apply' :: Apply xs r -> SList xs -> r Source
type family Rev l a :: [*] Source
type Reverse a = Rev a [] Source
sReverse :: SList as -> SList (Reverse as) Source