Core.xml has the following entries in String2:
charAt
compareTo
contains
endsWith
equalsIgnoreCase
getBytes
indexOf
indexOf
lastIndexOf
lastIndexOf
length
replace
startsWith
substring
substring
toLowerCase
toUpperCase
trim
As you can see, the following are duplicated:
indexOf
lastIndexOf
substring
I can't think of any reason you would want these to be listed multiple times.
EDIT: The signatures are different, but everywhere else, we would see something like:
indexOf2
lastIndexOf2
substring2
charAt
compareTo
contains
endsWith
equalsIgnoreCase
getBytes
indexOf
indexOf
lastIndexOf
lastIndexOf
length
replace
startsWith
substring
substring
toLowerCase
toUpperCase
trim
As you can see, the following are duplicated:
indexOf
lastIndexOf
substring
I can't think of any reason you would want these to be listed multiple times.
EDIT: The signatures are different, but everywhere else, we would see something like:
indexOf2
lastIndexOf2
substring2
Last edited: