Packages

trait ReaderEngine extends AnyRef

Provides kantan.csv with CSV parsing functionality.

All methods that will need to create a new instance of CsvReader expect and rely on an implicit ReaderEngine parameter. This allows third party libraries to plug into kantan.csv and replace the default parser at the cost of a simple import.

Source
ReaderEngine.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReaderEngine
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def unsafeReaderFor(reader: Reader, conf: CsvConfiguration): CsvReader[Seq[String]]

    Turns the specified Reader into a CsvReader.

Concrete Value Members

  1. def readerFor(reader: => Reader, conf: CsvConfiguration): CsvReader[ReadResult[Seq[String]]]

    Turns the specified Reader into a safe CsvReader.