definition: |
concatMapM :: Monad m => (a -> m [b]) -> [a] -> m [b] concatMapM f xs = concat <$> mapM f xs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Same as `concatMap`, but for a monadic function. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
concatMapM |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Monad b => (a -> b [c]) -> [a] -> b [c] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |