Recipe: Changing Seq[A] to A
val toA = pipe.lift { seq => Stream.chunk(Chunk.seq(seq)) }yourSourceOfSeqA.through(toA).toVectoryourSourceOfSeqA.flatMap(Stream.emits)Last updated
val toA = pipe.lift { seq => Stream.chunk(Chunk.seq(seq)) }yourSourceOfSeqA.through(toA).toVectoryourSourceOfSeqA.flatMap(Stream.emits)Last updated