[stdlib] Use more idiomatic and performant implementation of isBlank

Also replace expect-actual with a common function because its implementation is no longer different in different platforms.

KT-65590
This commit is contained in:
Ilya Gorbunov
2024-02-06 15:57:42 +01:00
committed by Space Team
parent 6f6496d78a
commit 15375c0fd5
6 changed files with 6 additions and 32 deletions
@@ -114,13 +114,6 @@ public actual fun String.replaceFirst(oldValue: String, newValue: String, ignore
return if (index < 0) this else this.replaceRange(index, index + oldValue.length, newValue)
}
/**
* Returns `true` if this string is empty or consists solely of whitespace characters.
*
* @sample samples.text.Strings.stringIsBlank
*/
public actual fun CharSequence.isBlank(): Boolean = length == 0 || indices.all { this[it].isWhitespace() }
/**
* Returns the substring of this string starting at the [startIndex] and ending right before the [endIndex].
*