scala-collection-contrib
scala-collection-contrib copied to clipboard
community-contributed additions to the Scala 2.13 collections
Results
21
scala-collection-contrib issues
Sort by
recently updated
recently updated
newest added
trafficstars
motivation: it'd be nice to centralize nonempty collections into de-facto stdlib. - https://typelevel.org/cats/datatypes/nel.html - https://zio.dev/zio-prelude/functional-data-types/nonemptylist/ - https://lexi-lambda.github.io/blog/2019/11/05/parse-don-t-validate/ example usage: ``` scala> List().head java.util.NoSuchElementException: head of empty list at scala.collection.immutable.Nil$.head(List.scala:663) at...