scala-extensions icon indicating copy to clipboard operation
scala-extensions copied to clipboard

Useful extensions for the Scala standard library

Results 6 scala-extensions issues
Sort by recently updated
recently updated
newest added

dropped in https://github.com/cvogt/scala-extensions/commit/25576b00e31a33fbd3de323f09a38b02132f257b as I couldn't get the macros to work Annotating DefaultMacros.defaults with :Tree helped, but whitebox still didn't seem to work in 2.10. Alternatively we could make the...

enhancement
help wanted

``` Seq[(A,B)].groupBy(_._1,_._2): Seq[(A, Seq[B])] /*or*/ Seq[(A,B)].groupBy(e => e._1 -> e._2): Seq[(A, Seq[B])] Seq[(A,B)].groupByLeft: Map[A,Seq[B]] Seq[(A,B)].groupByRight: Map[B,Seq[A]] ```