Packages

package csv

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait CSVConvertible[T] extends AnyRef
  2. case class CSVFile[T](header: CSVRow[T], rows: Seq[CSVRow[T]], sep: String) extends Product with Serializable

    Represents a csv file with a header

    Represents a csv file with a header

    T

    the cell type

    header

    the header row

    rows

    the data rows

    sep

    the column seprator

  3. case class CSVRow[T](cells: Seq[T]) extends Product with Serializable

    Represents one row in a csv file

    Represents one row in a csv file

    T

    the type of cells

    cells

    the content of each column

Value Members

  1. object CSVFile extends Serializable

Ungrouped