MCPcopy Create free account
hub / github.com/davidgiven/luje / lastIndexOf

Method lastIndexOf

lib/java/lang/String.java:1079–1081  ·  view source on GitHub ↗

Searches in this string for the last index of the specified character. The search for the character starts at the end and moves towards the beginning of this string. @param c the character to find. @return the index in this string of the specified character, -1 if the character i

(int c)

Source from the content-addressed store, hash-verified

1077 * character isn't found.
1078 */
1079 public int lastIndexOf(int c) {
1080 return lastIndexOf(c, count - 1);
1081 }
1082
1083 /**
1084 * Searches in this string for the index of the specified character. The

Callers 1

parseAuthorityMethod · 0.95

Calls 1

codePointAtMethod · 0.95

Tested by

no test coverage detected