ConCat.Shaped
Description
Vectors and functor exponentiations via type families.
type family LVec n where ... Source #
Left-associated vector
Equations
type family RVec n where ... Source #
Right-associated vector
type family LPow h n where ... Source #
Left-associated functor exponentiation
type family RPow h n where ... Source #
Right-associated functor exponentiation
type LBin n = LPow Pair n Source #
type RBin n = RPow Pair n Source #
type family Bush n where ... Source #
type family Bush' n where ... Source #
type family LFin n where ... Source #
[0..n-1], left version
[0..n-1]
type family RFin n where ... Source #
[0..n-1], right version
module ConCat.Pair