MiSikora
01/04/2025, 1:29 PMjava.lang.Character.isLetter(int codePoint)
in Kotlin? I'm getting a warning when importing j.l.Character
but I don't think there are functions operating on code points.mbonnin
01/04/2025, 3:49 PMisLetter
Ruckus
01/04/2025, 8:28 PMcodePoint.toChar().isLetter()
MiSikora
01/04/2025, 11:35 PMKlitos Kyriacou
01/05/2025, 5:40 PMChar
code is represented by the least significant 16 bits of this Int
value."Klitos Kyriacou
01/05/2025, 5:54 PMCodePoint
and create member functions for it that mirror the Char.isXxxx
functions. And looking at the doc for `isSupplementaryCodePoint`, it says "In the future it could be deprecated in favour of an overload that would accept a CodePoint
type." This suggests that someone at JetBrains is already thinking of exactly this.jw
01/06/2025, 5:29 PM