//ERDDAP/com.cohort.util/ScriptString2/isLetter
isLetter
[JVM]
fun isLetter(c: Int): Boolean
This includes hiASCII/ISO Latin 1/ISO 8859-1, but not extensive unicode characters. Letters are A..Z, a..z, and #192..#255 (except #215 and #247). For unicode characters, see Java Lang Spec pg 14.
Return
true if c is a letter
Parameters
JVM
c | a char |