Ichoran

Results 92 comments of Ichoran

Okay, I'll get it passing (with flags to disable the things that don't work) and merge the working branch into master. It's already reasonably well-documented, but if there's anything in...

Master is now in the state that compiles and runs with no errors on my machine on 2.13.x. The repository doesn't seem to be heavily forked, so I just forced...

@SethTisue - It did take care of `VectorMap`! But are you sure this works the way it's supposed to? You need to run laws/run prior to tests/test in order to...

I think it really depends how much slower `VectorMap` is than a normal immutable map. In general you might have a _lot_ of JSON objects, so anything that is too...

I in general support the idea of having `ByteString`-like functionality in the standard library, but I don't have time to look through the implementation in detail right now. But it's...

If we're trying tweaks to `Vector`, someone should go back and re-examine the work done when Vector was last redone for 2.13. A variety of implementations were examined, including some...

@ansvonwa - I believe I was thinking of https://github.com/scala/scala/pull/7146

This naming is directly in conflict with `0 until 5`, which excludes the endpoint. The functionality is helpful, but it should be called `takeTo` or somesuch. (Or maybe `takeWhile` should...

@ronanM - The do/until vs while constructs of C set a precedent also, but that isn't how Scala ranges work, and hence, isn't how things should be named in Scala.