Stéphane Épardaud

Results 666 comments of Stéphane Épardaud

Note that perhaps the buffer abstraction is a thing of the past and should be replaced by `Iteratees` or other fancy stuff. I doubt it, but who knows? Perhaps I'm...

On my machine Ceylon takes 59ms, Java 13ms. If I do `split(",").sequence()` to factor out the cost of splitting (lazy) like it is in Java, Ceylon takes 46ms. Still a...

Well, `split` is lazy, so it does not cost anything to call, unlike in Java where it's eager. The cost is spread while iterating so you were counting the splitting...

It is possible, but it's the same default as for the JDK's `HashMap`.

Your Strings (keys) are always the same, no? So you're not really adding N elements in the hashmap but only 1, no?

The boxing/reboxing issue is something we already have open somewhere, pretty sure. @quintesse, rings a bell?

So in theory we can already test boxing issues with `@boxed` then?

I don't think it's worth changing, because our definition of `Stream` is different to other languages anyway, and especially now that reactive streams are becoming mainstrearm, it's _extremely_ confusing to...

> Perhaps we could use some sort of annotation on the module import to indicate that we want this functionality to be enabled. No, it's per-package, with list of exceptions,...