Portability | portable |
---|---|
Stability | experimental |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Safe Haskell | Safe-Infered |
NB: this contradicts another common meaning for an Associative
Category
, which is one
where the pentagonal condition does not hold, but for which there is an identity.
- class Bifunctor p k k k => Associative k p where
- associate :: k (p (p a b) c) (p a (p b c))
- class Bifunctor s k k k => Disassociative k s where
- disassociate :: k (s a (s b c)) (s (s a b) c)
Documentation
class Bifunctor p k k k => Associative k p whereSource
A category with an associative bifunctor satisfying Mac Lane's pentagonal coherence identity law:
bimap id associate . associate . bimap associate id = associate . associate
Associative (->) Either | |
Associative (->) (,) |
class Bifunctor s k k k => Disassociative k s whereSource
A category with a disassociative bifunctor satisyfing the dual of Mac Lane's pentagonal coherence identity law:
bimap disassociate id . disassociate . bimap id disassociate = disassociate . disassociate
disassociate :: k (s a (s b c)) (s (s a b) c)Source
Disassociative (->) Either | |
Disassociative (->) (,) |