semigroupoids-4.3: Semigroupoids: Category sans id

Copyright(C) 2011 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityprovisional
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Semigroup.Traversable

Description

 

Documentation

class (Foldable1 t, Traversable t) => Traversable1 t where

Minimal complete definition

Nothing

Methods

traverse1 :: Apply f => (a -> f b) -> t a -> f (t b)

sequence1 :: Apply f => t (f b) -> f (t b)

foldMap1Default :: (Traversable1 f, Semigroup m) => (a -> m) -> f a -> m