MCPcopy Index your code
hub / github.com/davidgiven/luje / indexOf

Method indexOf

lib/java/lang/String.java:955–957  ·  view source on GitHub ↗

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

(int c)

Source from the content-addressed store, hash-verified

953 * character isn't found.
954 */
955 public int indexOf(int c) {
956 return indexOf(c, 0);
957 }
958
959 /**
960 * Searches in this string for the index of the specified character. The

Callers 6

encodeURLMethod · 0.95
replaceMethod · 0.95
containsMethod · 0.95
parseURIMethod · 0.95
parseAuthorityMethod · 0.95
normalizeMethod · 0.95

Calls 1

codePointAtMethod · 0.95

Tested by

no test coverage detected