loloof64
07/19/2022, 3:44 PMephemient
07/19/2022, 3:49 PMkotlin.String
named .chars()
. perhaps you are thinking of the member function of the Java type, https://developer.android.com/reference/java/lang/String#chars() which was added in API 24 (as part of updates to Java 9 support).toCharArray()
, which is a Kotlin extension function which should be in the default imported namespaces
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/to-char-array.htmlloloof64
07/19/2022, 3:51 PMtoCharArray()