Copyright | (C) 2011-2015 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Stability | provisional |
Portability | portable |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
Documentation
class (Bifoldable1 t, Bitraversable t) => Bitraversable1 (t :: Type -> Type -> Type) where Source #
bitraverse1 :: Apply f => (a -> f b) -> (c -> f d) -> t a c -> f (t b d) Source #
bisequence1 :: Apply f => t (f a) (f b) -> f (t a b) Source #
Instances
class (Foldable1 t, Traversable t) => Traversable1 (t :: Type -> Type) where Source #