excelreads

package excelreads

Type members

Classlikes

abstract
class ExcelReads[R, A]

Excel parser type class

Excel parser type class

Type Params
A

return type

R

effects stack for Eff

Companion
object
Companion
class

Basic instances

Basic instances

Note

This parser uses HList to parse the case class which do not contain data types like neither Either nor ADT. Either and ADT are required Coproduct but the parser sometimes cannot determine which type it should parse. That's the why I don't make Coproduct instances. If you use ADT in the type representing a Excel row, you have to implement a instance to parse it.

class SeqProduct(values: Seq[Any]) extends Product