excelreads
package excelreads
Type members
Classlikes
abstract
Excel parser type class
Excel parser type class
- Type Params
- A
return type
- R
effects stack for Eff
- Companion
- object
Basic instances
Basic instances
- Note
This parser uses
HList
to parse thecase class
which do not contain data types like neitherEither
nor ADT.Either
and ADT are requiredCoproduct
but the parser sometimes cannot determine which type it should parse. That's the why I don't makeCoproduct
instances. If you use ADT in the type representing a Excel row, you have to implement a instance to parse it.