kkozmic
val foo = getNullableString() if(!foo.isNullOrWhiteSpace()) { someOtherFunctionTakesNonNullableString(foo!!) }
!!