caselessEquals >>-caselessEquals(other)----------------------------------------------->< Returns .true ("1") if the target string is strictly equal to the [other] string, using a caseless comparison. Returns .false ("0") if the two strings are not strictly equal. String class - caselessEquals method "a"~caselessEquals("A") -> 1 "aa"~caselessEquals("A") -> 0 "4"~caselessEquals("3") -> 0 |