I want to create something that works like this
implicit class HListOps[AHList<:HList](value:AHList){
def fold[R](folder: /*What here?*/)={
}
}
so that it works like this
("HeY"::42::HNil).fold{string=>int=> string+int.toString} // returns "HeY42"
Well, after checking how this problem looks very similar to actually reversing an HList, I used a very similar approach and got this working:
Only small problem is that after calling the method fold I have to invoke it using the word
apply
without syntactic sugar because otherwise compiler thinks I'm passing the implicit explicitly.