ZioCsvWriter

class Object
trait Matchable
class Any

Value members

Concrete methods

def encode[R, E, A](rows: ZStream[R, E, A])(implicit E: CsvRecordEncoder[A]): ZStream[R, E, String]

Encode rows into CSV lines.

Encode rows into CSV lines.

def encodeWithHeader[R, E, A](header: Iterable[String], rows: ZStream[R, E, A])(implicit E: CsvRecordEncoder[A]): ZStream[R, E, String]

Encode rows into CSV lines prepending the given header.

Encode rows into CSV lines prepending the given header.