Language.Hasmtlib.Internal.Constraint
type family AllC cs k :: Constraint where ... Source #
AllC ensures that a list of constraints is applied to a poly-kinded Type k
Type
AllC '[] k = () AllC (c ': cs) k = (c k, AllC cs k)
Equations