Data.Monoid.Applicative
newtype T f a Source #
Sequence applicative functors and combine their functorial results with (<>).
(<>)
Constructors
Fields
Defined in Data.Monoid.Applicative
Methods
lift :: Monoid m => m -> T f m Source #
mempty :: T f a
mappend :: T f a -> T f a -> T f a
mconcat :: [T f a] -> T f a
(<>) :: T f a -> T f a -> T f a
sconcat :: NonEmpty (T f a) -> T f a
stimes :: Integral b => b -> T f a -> T f a