<@U6W8VF2A0> dug a bit into `String.equals` w/ `ig...
# getting-started
s
@nic dug a bit into
String.equals
w/
ignoreCase
, it ends up calling
java.lang.String#equalsIgnoreCase()
, which calls
java..String#regionMatches()
, which has a
ignoreCase
boolean, and calls
java..Character#toUpperCase()
while iterating through the string
👍 1