kantan.csv.RowDecoderInstances
Provides reasonable default RowDecoder instances for various types.
Attributes
-
Graph
-
-
Supertypes
-
class Object
trait Matchable
class Any
-
Known subtypes
-
Members list
Attributes
-
Example
-
RowDecoder[Int].decode(Seq("123", "456", "789"))
res1: DecodeResult[Int] = Right(123)
Provides a RowDecoder instance for all types that have an Factory
, provided the inner type has a CellDecoder.
Provides a RowDecoder instance for all types that have an Factory
, provided the inner type has a CellDecoder.
Attributes
-
Example
-
RowDecoder[List[Int]].decode(Seq("123", "456", "789"))
res1: DecodeResult[List[Int]] = Right(List(123, 456, 789))