Object

kantan.csv

RowDecoder

Related Doc: package csv

Permalink

object RowDecoder extends GeneratedRowDecoders

Provides various instance creation and summoning methods.

The instance creation functions are important to know about, as they make the task of creating new decoders easier and more correct. There are two main families, depending on the type to decode:

Note that a lot of types already have implicit instances: tuples, collections... moreover, the generics module can automatically derive valid instances for a lot of common scenarios.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RowDecoder
  2. GeneratedRowDecoders
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[A](f: (Seq[String]) ⇒ DecodeResult[A]): RowDecoder[A]

    Permalink

    Creates a new RowDecoder using the specified function for decoding.

  5. def apply[A](implicit da: RowDecoder[A]): RowDecoder[A]

    Permalink

    Summons an implicit instance of RowDecoder for the desired type if one can be found.

    Summons an implicit instance of RowDecoder for the desired type if one can be found.

    This is essentially a shorter way of calling implicitly[RowDecoder[A]].

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def decoder1[A1, R](f: (A1) ⇒ R)(i1: Int)(implicit a1: CellDecoder[A1]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    Definition Classes
    GeneratedRowDecoders
  9. def decoder10[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    Definition Classes
    GeneratedRowDecoders
  10. def decoder11[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    Definition Classes
    GeneratedRowDecoders
  11. def decoder12[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    Definition Classes
    GeneratedRowDecoders
  12. def decoder13[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    Definition Classes
    GeneratedRowDecoders
  13. def decoder14[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    Definition Classes
    GeneratedRowDecoders
  14. def decoder15[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    Definition Classes
    GeneratedRowDecoders
  15. def decoder16[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    Definition Classes
    GeneratedRowDecoders
  16. def decoder17[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    Definition Classes
    GeneratedRowDecoders
  17. def decoder18[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int, i18: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    i18

    index of the cell that should be passed as parameter number 18 of f

    Definition Classes
    GeneratedRowDecoders
  18. def decoder19[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int, i18: Int, i19: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    i18

    index of the cell that should be passed as parameter number 18 of f

    i19

    index of the cell that should be passed as parameter number 19 of f

    Definition Classes
    GeneratedRowDecoders
  19. def decoder2[A1, A2, R](f: (A1, A2) ⇒ R)(i1: Int, i2: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    Definition Classes
    GeneratedRowDecoders
  20. def decoder20[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int, i18: Int, i19: Int, i20: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    i18

    index of the cell that should be passed as parameter number 18 of f

    i19

    index of the cell that should be passed as parameter number 19 of f

    i20

    index of the cell that should be passed as parameter number 20 of f

    Definition Classes
    GeneratedRowDecoders
  21. def decoder21[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int, i18: Int, i19: Int, i20: Int, i21: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20], a21: CellDecoder[A21]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    i18

    index of the cell that should be passed as parameter number 18 of f

    i19

    index of the cell that should be passed as parameter number 19 of f

    i20

    index of the cell that should be passed as parameter number 20 of f

    i21

    index of the cell that should be passed as parameter number 21 of f

    Definition Classes
    GeneratedRowDecoders
  22. def decoder22[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int, i10: Int, i11: Int, i12: Int, i13: Int, i14: Int, i15: Int, i16: Int, i17: Int, i18: Int, i19: Int, i20: Int, i21: Int, i22: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20], a21: CellDecoder[A21], a22: CellDecoder[A22]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    i10

    index of the cell that should be passed as parameter number 10 of f

    i11

    index of the cell that should be passed as parameter number 11 of f

    i12

    index of the cell that should be passed as parameter number 12 of f

    i13

    index of the cell that should be passed as parameter number 13 of f

    i14

    index of the cell that should be passed as parameter number 14 of f

    i15

    index of the cell that should be passed as parameter number 15 of f

    i16

    index of the cell that should be passed as parameter number 16 of f

    i17

    index of the cell that should be passed as parameter number 17 of f

    i18

    index of the cell that should be passed as parameter number 18 of f

    i19

    index of the cell that should be passed as parameter number 19 of f

    i20

    index of the cell that should be passed as parameter number 20 of f

    i21

    index of the cell that should be passed as parameter number 21 of f

    i22

    index of the cell that should be passed as parameter number 22 of f

    Definition Classes
    GeneratedRowDecoders
  23. def decoder3[A1, A2, A3, R](f: (A1, A2, A3) ⇒ R)(i1: Int, i2: Int, i3: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    Definition Classes
    GeneratedRowDecoders
  24. def decoder4[A1, A2, A3, A4, R](f: (A1, A2, A3, A4) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    Definition Classes
    GeneratedRowDecoders
  25. def decoder5[A1, A2, A3, A4, A5, R](f: (A1, A2, A3, A4, A5) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    Definition Classes
    GeneratedRowDecoders
  26. def decoder6[A1, A2, A3, A4, A5, A6, R](f: (A1, A2, A3, A4, A5, A6) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    Definition Classes
    GeneratedRowDecoders
  27. def decoder7[A1, A2, A3, A4, A5, A6, A7, R](f: (A1, A2, A3, A4, A5, A6, A7) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    Definition Classes
    GeneratedRowDecoders
  28. def decoder8[A1, A2, A3, A4, A5, A6, A7, A8, R](f: (A1, A2, A3, A4, A5, A6, A7, A8) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    Definition Classes
    GeneratedRowDecoders
  29. def decoder9[A1, A2, A3, A4, A5, A6, A7, A8, A9, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9) ⇒ R)(i1: Int, i2: Int, i3: Int, i4: Int, i5: Int, i6: Int, i7: Int, i8: Int, i9: Int)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    f

    encoding function.

    i1

    index of the cell that should be passed as parameter number 1 of f

    i2

    index of the cell that should be passed as parameter number 2 of f

    i3

    index of the cell that should be passed as parameter number 3 of f

    i4

    index of the cell that should be passed as parameter number 4 of f

    i5

    index of the cell that should be passed as parameter number 5 of f

    i6

    index of the cell that should be passed as parameter number 6 of f

    i7

    index of the cell that should be passed as parameter number 7 of f

    i8

    index of the cell that should be passed as parameter number 8 of f

    i9

    index of the cell that should be passed as parameter number 9 of f

    Definition Classes
    GeneratedRowDecoders
  30. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  32. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  34. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  35. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. def ordered1[A1, R](f: (A1) ⇒ R)(implicit a1: CellDecoder[A1]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder1 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  40. def ordered10[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder10 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  41. def ordered11[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder11 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  42. def ordered12[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder12 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  43. def ordered13[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder13 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  44. def ordered14[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder14 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  45. def ordered15[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder15 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  46. def ordered16[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder16 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  47. def ordered17[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder17 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  48. def ordered18[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder18 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  49. def ordered19[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder19 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  50. def ordered2[A1, A2, R](f: (A1, A2) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder2 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  51. def ordered20[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder20 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  52. def ordered21[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20], a21: CellDecoder[A21]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder21 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  53. def ordered22[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9], a10: CellDecoder[A10], a11: CellDecoder[A11], a12: CellDecoder[A12], a13: CellDecoder[A13], a14: CellDecoder[A14], a15: CellDecoder[A15], a16: CellDecoder[A16], a17: CellDecoder[A17], a18: CellDecoder[A18], a19: CellDecoder[A19], a20: CellDecoder[A20], a21: CellDecoder[A21], a22: CellDecoder[A22]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder22 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  54. def ordered3[A1, A2, A3, R](f: (A1, A2, A3) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder3 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  55. def ordered4[A1, A2, A3, A4, R](f: (A1, A2, A3, A4) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder4 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  56. def ordered5[A1, A2, A3, A4, A5, R](f: (A1, A2, A3, A4, A5) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder5 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  57. def ordered6[A1, A2, A3, A4, A5, A6, R](f: (A1, A2, A3, A4, A5, A6) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder6 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  58. def ordered7[A1, A2, A3, A4, A5, A6, A7, R](f: (A1, A2, A3, A4, A5, A6, A7) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder7 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  59. def ordered8[A1, A2, A3, A4, A5, A6, A7, A8, R](f: (A1, A2, A3, A4, A5, A6, A7, A8) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder8 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  60. def ordered9[A1, A2, A3, A4, A5, A6, A7, A8, A9, R](f: (A1, A2, A3, A4, A5, A6, A7, A8, A9) ⇒ R)(implicit a1: CellDecoder[A1], a2: CellDecoder[A2], a3: CellDecoder[A3], a4: CellDecoder[A4], a5: CellDecoder[A5], a6: CellDecoder[A6], a7: CellDecoder[A7], a8: CellDecoder[A8], a9: CellDecoder[A9]): RowDecoder[R]

    Permalink

    Creates a new RowDecoder from the specified function.

    Creates a new RowDecoder from the specified function.

    The difference between this and decoder9 is that the former expects CSV cells to be ordered in the exact same sequence as the parameters expected by the specified function, while the later lets you customise these indexes.

    Definition Classes
    GeneratedRowDecoders
  61. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  62. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  63. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from GeneratedRowDecoders

Inherited from AnyRef

Inherited from Any

Ungrouped