Marissa | April
Marissa | April
Following on from #93, I think it would be valuable to have the option (even if it is not the default) to produce SemVer-compliant versions. Some thoughts on how to...
Rewrite rule for `Map#mapValues` should call `.view` before calling `.mapValues` (H/T @joshlemer)
## Motivation A frequent request for scala/scala PRs (particularly collections changes) is that the changes be benchmarked; however, many obstacles exist for contributors running benchmarks on their personal computers, to...
Redesign `NonEmptyLazyList` to be maximally lazy. - [x] docs - [ ] tests - [ ] commit/history cleanup?
Add implementations for `Set`s backed by `Map`s (and corresponding factories). Add fluent `fromMap` APIs to `Set` companions. Motivation: - It should be first-class - Java has it, why don't we?
`.drop(...)` is equivalent to calling `.next()` (up to) a given number of times, which is very useful. unfortunately, `.drop(...)` is not required to return the same instance (though the default...
Proposals: 1. Only names that are planned to exist in a future Scala release can be outside of a `next` (sub-)package. Names that will not exist in a future Scala...
Scala 2.13.x As noted by @smarter [here](https://gitter.im/scala/contributors?at=5f45740736e6f709fd00eec1), builders for `Map`s just use the regular `Builder` interface, and do not expose a way to add elements without creating tuples. However, several...