Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
type family Index (a :: k) (d :: [(k, *)]) where ... Source #
Index of type key a
in association list d
.
type family Lookup (a :: k) (d :: [(k, *)]) where ... Source #
Type associated with a
in d
. If the key a
occurs multiple times,
the first one is used.