Copyright | (C) 2008-2016 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Stability | provisional |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell98 |
From the Functional Pearl "Clowns to the Left of me, Jokers to the Right: Dissecting Data Structures" by Conor McBride.
Documentation
Make a Functor
over the first argument of a Bifunctor
.
Mnemonic: Clowns to the left (parameter of the Bifunctor), jokers to the right.
Instances
Generic1 (Clown f a :: k1 -> *) Source # | |
Traversable f => Bitraversable (Clown f :: * -> * -> *) Source # | |
Defined in Data.Bifunctor.Clown bitraverse :: Applicative f0 => (a -> f0 c) -> (b -> f0 d) -> Clown f a b -> f0 (Clown f c d) # | |
Foldable f => Bifoldable (Clown f :: * -> * -> *) Source # | |
Functor f => Bifunctor (Clown f :: * -> * -> *) Source # | |
Applicative f => Biapplicative (Clown f :: * -> * -> *) Source # | |
Defined in Data.Bifunctor.Clown | |
Functor (Clown f a :: * -> *) Source # | |
Foldable (Clown f a :: * -> *) Source # | |
Defined in Data.Bifunctor.Clown fold :: Monoid m => Clown f a m -> m # foldMap :: Monoid m => (a0 -> m) -> Clown f a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Clown f a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Clown f a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Clown f a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Clown f a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Clown f a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Clown f a a0 -> a0 # toList :: Clown f a a0 -> [a0] # null :: Clown f a a0 -> Bool # length :: Clown f a a0 -> Int # elem :: Eq a0 => a0 -> Clown f a a0 -> Bool # maximum :: Ord a0 => Clown f a a0 -> a0 # minimum :: Ord a0 => Clown f a a0 -> a0 # | |
Traversable (Clown f a :: * -> *) Source # | |
Defined in Data.Bifunctor.Clown | |
Eq (f a) => Eq (Clown f a b) Source # | |
Ord (f a) => Ord (Clown f a b) Source # | |
Defined in Data.Bifunctor.Clown | |
Read (f a) => Read (Clown f a b) Source # | |
Show (f a) => Show (Clown f a b) Source # | |
Generic (Clown f a b) Source # | |
type Rep1 (Clown f a :: k1 -> *) Source # | |
Defined in Data.Bifunctor.Clown | |
type Rep (Clown f a b) Source # | |
Defined in Data.Bifunctor.Clown |