<@U0BLU7JTA> thats actually one of my favourite da...
# language-proposals
g
@dmitry.petrov thats actually one of my favourite dark-horse features of kotlin. I know some formal type systems guys, and the "bottom" type that is
Nothing
has always been a big deal to them and I didnt really understood why until kotlin Doing kotlin things like
Copy code
val something = nullablueValue ?: throw BlamException("fix your params!")

val result = whatevers.map {
  it.someExpression() ?: run { log("no good whatever: $it") return; }
}
is both nifty and convenient.