Fs2CsvWriter

ceesvee.fs2.Fs2CsvWriter
object Fs2CsvWriter

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

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.

Attributes

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.

Attributes