papa-semigroupoids-implement-0.2.0: src/Papa/Semigroupoids/Implement/Data/Functor/Bind.hs
{-# LANGUAGE NoImplicitPrelude #-}
module Papa.Semigroupoids.Implement.Data.Functor.Bind(
concat
, concatMap
) where
import Data.Functor.Bind(Bind(join), (-<<))
concat ::
Bind f =>
f (f a)
-> f a
concat =
join
concatMap ::
Bind f =>
(a -> f b)
-> f a
-> f b
concatMap =
(-<<)