The following code, which is taken from Apocalisp\'s excellent blog series: Type level programming in scala , and modified for an implicit parsing scenario. However, this d
You can just replace the function literal hParseNil to a normal function.
hParseNil
implicit def hParseNil(a:HNil): HNil = HNil
instead of
implicit def hParseNil: HNil => HNil = _ => HNil