concat -package:relude package:conduit

Flatten out a stream by yielding the values contained in an incoming MonoFoldable as individually yielded values. Subject to fusion
Generalization of catMaybes. It puts all values from Foldable into stream. Subject to fusion Since 1.0.6
Flatten out a stream by yielding the values contained in an incoming MonoFoldable as individually yielded values.
concatMap with an accumulator.
concatMapM with an accumulator.
Apply the function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable.
Apply the function to each element in the chunked stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable.
Apply the monadic function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMapM, mapMaybeM, and mapFoldableM.
Apply the function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable. Subject to fusion
concatMap with an accumulator. Subject to fusion
concatMapM with an accumulator. Subject to fusion
Apply the function to each element in the chunked stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable. Subject to fusion
Apply the monadic function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMapM, mapMaybeM, and mapFoldableM. Subject to fusion
Apply a transformation to all values in a stream, concatenating the output values. Subject to fusion Since 0.3.0
concatMap with a strict accumulator. Subject to fusion Since 0.3.0
concatMapM with a strict accumulator. Subject to fusion Since 0.3.0
Apply a monadic transformation to all values in a stream, concatenating the output values. Subject to fusion Since 0.3.0