rtsketo
06/15/2021, 5:53 AMcapitalize()
is deprecated and I'm prompted to replaced it with
replaceFirstChar { if (it.isLowerCase())
it.titlecase(Locale.getDefault()) else it.toString() })
How's that better? I guess I'll re-create the shortcut myself ¯\_(ツ)_/¯danny
06/15/2021, 6:36 AMLocale.ROOT
and that's what the new functions use: https://kotlinlang.org/docs/whatsnew15.html#stable-locale-agnostic-api-for-upper-lowercasing-textelect
06/15/2021, 4:38 PMrtsketo
06/16/2021, 5:54 AMgildor
06/16/2021, 6:38 AM