ExcelReadsInstances
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.
Value members
Inherited methods
Implicits
Implicits
This instance only can parse the type whose sequence is at the end. If we want to parse any place on the type, it requires backtrack like regular-expression matcher. It's hard to implement so I haven't implemented it yet for now.
This instance only can parse the type whose sequence is at the end. If we want to parse any place on the type, it requires backtrack like regular-expression matcher. It's hard to implement so I haven't implemented it yet for now.