we attempted to copy and paste some code from stri...
# announcements
c
we attempted to copy and paste some code from strings.kt, namely this
Copy code
@kotlin.internal.InlineOnly
public inline fun CharSequence?.isNullOrEmpty(): Boolean {
    contract {
        returns(false) implies (this@isNullOrEmpty != null)
    }

    return this == null || this.length == 0
}