is it possible to get value inside `else` of `when...
# announcements
a
is it possible to get value inside
else
of
when
expression? I mean smth like this:
Copy code
fun getSmth() = when(heavyCalculatedFunction()) {
  firstValue -> someAnotherValue
  secondValue -> oneMoreAnotherValue
  else -> (this or it or what?)
}