Safe Haskell | None |
---|---|
Language | GHC2021 |
Documentation
type NotElem (x :: t) (orig :: [Type]) = TypeError (('ShowType x ':<>: 'Text " not found in ") ':<>: 'ShowType orig) :: k Source #
type family TupleList a :: [Type] where ... Source #
TupleList () = '[] :: [Type] | |
TupleList (a, b) = '[a, b] | |
TupleList (a, b, c) = '[a, b, c] | |
TupleList (a, b, c, d) = '[a, b, c, d] | |
TupleList (a, b, c, d, e) = '[a, b, c, d, e] | |
TupleList (a, b, c, d, e, f) = '[a, b, c, d, e, f] | |
TupleList (a, b, c, d, e, f, g) = '[a, b, c, d, e, f, g] | |
TupleList (a, b, c, d, e, f, g, h) = '[a, b, c, d, e, f, g, h] | |
TupleList (a, b, c, d, e, f, g, h, i) = '[a, b, c, d, e, f, g, h, i] | |
TupleList (a, b, c, d, e, f, g, h, i, j) = '[a, b, c, d, e, f, g, h, i, j] | |
TupleList a = '[a] |