ifBlank

inline fun <C : CharSequence, R, R> C.ifBlank(defaultValue: () -> R): R(source)

Returns this char sequence if it is not empty and doesn't consist solely of whitespace characters, or the result of calling defaultValue function otherwise.

Since Kotlin

1.3

Samples