ScalaNullSafe
ScalaNullSafe copied to clipboard
A macro-based library for writing efficient and readable null-safe code in Scala.
Results
3
ScalaNullSafe issues
Sort by
recently updated
recently updated
newest added
Currently there's no equivalent in ScalaNullSafe for ``` Option(a).flatmap(a => f(a)) ``` In other words, you can't use the result of a null-safe selection in a function call. Adding the...
enhancement
The macro should work in the following situation: ```scala case class A(b: B) case class B(c: C) case class C(d: D) case class D(s: String) def expectFunction[T](f: A => T):...
bug