CsvRow

fs2.data.csv.CsvRow$
object CsvRow

Attributes

Source
CsvRow.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
CsvRow.type

Members list

Value members

Concrete methods

def apply[Header](values: NonEmptyList[String], headers: NonEmptyList[Header], line: Option[Long]): Either[CsvException, CsvRow[Header]]

Constructs a CsvRow and checks that the size of values and headers match.

Constructs a CsvRow and checks that the size of values and headers match.

Attributes

Source
CsvRow.scala
def fromListHeaders[Header](l: List[(Header, String)]): Option[CsvRow[Header]]

Attributes

Source
CsvRow.scala
def fromNelHeaders[Header](nel: NonEmptyList[(Header, String)]): CsvRow[Header]

Attributes

Source
CsvRow.scala
def liftRow[Header](headers: NonEmptyList[Header])(row: Row): Either[CsvException, CsvRow[Header]]

Attributes

Source
CsvRow.scala
def unapply[Header](arg: CsvRow[Header]): Some[(NonEmptyList[String], NonEmptyList[Header])]

Attributes

Source
CsvRow.scala
def unsafe[Header](values: NonEmptyList[String], headers: NonEmptyList[Header]): CsvRow[Header]

Attributes

Source
CsvRow.scala