Fs2CsvWriter

class Object
trait Matchable
class Any

Value members

Concrete methods

def encode[F[_], A](rows: Stream[F, A])(implicit E: CsvRecordEncoder[A]): Stream[F, String]

Encode rows into CSV lines.

Encode rows into CSV lines.

def encodeWithHeader[F[_], A](header: Iterable[String], rows: Stream[F, A])(implicit E: CsvRecordEncoder[A]): Stream[F, String]

Encode rows into CSV lines prepending the given header.

Encode rows into CSV lines prepending the given header.