MCPcopy Index your code
hub / github.com/antlr/codebuff / indexOf

Method indexOf

output/java_guava/1.4.17/Ints.java:168–170  ·  view source on GitHub ↗

Returns the index of the first appearance of the value target in array. @param array an array of int values, possibly empty @param target a primitive int value @return the least index i for which array[i] == target, or -1 if no such index

(int[] array, int target)

Source from the content-addressed store, hash-verified

166
167
168 public static int indexOf(int[] array, int target) {
169 return indexOf(array, target, 0, array.length);
170 }
171
172 // TODO(kevinb): consider making this public
173

Callers 15

containsMethod · 0.95
indexOfMethod · 0.95
setTextMethod · 0.45
addMethod · 0.45
addAggrMethod · 0.45
defineTemplateMethod · 0.45
setTextMethod · 0.45
addMethod · 0.45
addAggrMethod · 0.45
defineTemplateMethod · 0.45
setTextMethod · 0.45
addMethod · 0.45

Calls 1

checkNotNullMethod · 0.45

Tested by

no test coverage detected