kantan.csv.engine
Members list
Type members
Classlikes
Provides kantan.csv with CSV parsing functionality.
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.
Attributes
- Companion
- object
- Supertypes
-
class Objecttrait Matchableclass Any
Provides instance creation methods and default implementations.
Provides instance creation methods and default implementations.
Attributes
- Companion
- trait
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
ReaderEngine.type
Provides factory-like services for CsvWriter.
Provides factory-like services for CsvWriter.
Functions that create instances of CsvWriter, either as part of their return types or for internal operations, can declare an implicit CsvWriter parameter. If one is imported explicitly (such as the Jackson engine), it will be used. Otherwise, the internal one is always in scope.
Attributes
- See also
- Companion
- object
- Supertypes
-
class Objecttrait Matchableclass Any
Provides creation methods and default implementations.
Provides creation methods and default implementations.
Attributes
- Companion
- trait
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
WriterEngine.type
Implicits
Implicits
Converts a java iterator of arrays of strings into a scala iterator of sequence of strings.
Converts a java iterator of arrays of strings into a scala iterator of sequence of strings.
This is useful when writing ReaderEngine implementations for Java libraries.