Provides default instances as well as instance summoning and creation methods.
Summons an implicit instance of CsvSink[A] if one can be found.
CsvSink[A]
This is simply a convenience method. The two following calls are equivalent:
val file: CsvSink[File] = CsvSink[File] val file2: CsvSink[File] = implicitly[CsvSink[File]]
Turns the specified function into a CsvSink.
Note that it's usually better to compose an existing instance through CsvSink.contramap rather than create one from scratch.