Pascal Voitot

Results 103 comments of Pascal Voitot

@helena Hi Helena, could you find some time to bootstrap something or not?

Not sure to understand what you mean by composability... Do you have the signature of the function you imagine and a short description?

It compiles & works with: ``` scala def getRight[T, L

I'd like to replace some tokens by Unknown tokens after tokenizing my data. Imagine some kind of randomness or erasing some information on purpose. But for now, I can't retrieve...

Unknown token might be the only one having a transversal role, right? We could imagine expose that token as we know its role on all tokenizer. It would be practical...

I see! That wasn't clear when I was watching the API in my first look. I'll see if I can make a PR for that, I need to refresh my...

No I think this is normal... You override "apply" function and the macro is enable to detect that. As soon as you do that, you must write a custom Reads[T]...

It's hard to fix it because we would have to decide which apply you use. So some people would be happy about the choice and others wouldn't be. For example,...

Actually, the best way to deal with sealed trait is the following (with an even more complicated case with recursive classes): https://gist.github.com/mandubian/5396793 BTW, Reflection is not all the philosophy of...

On Mon, Jun 17, 2013 at 3:12 PM, Sciss [email protected] wrote: > Thanks. Looking at the gist, this looks like I'll have to write that bit > for each and...