MCPcopy Index your code
hub / github.com/processing/processing / removeValue

Method removeValue

core/src/processing/data/IntList.java:243–250  ·  view source on GitHub ↗
(int value)

Source from the content-addressed store, hash-verified

241 // Remove the first instance of a particular value,
242 // and return the index at which it was found.
243 public int removeValue(int value) {
244 int index = index(value);
245 if (index != -1) {
246 remove(index);
247 return index;
248 }
249 return -1;
250 }
251
252
253 // Remove all instances of a particular value,

Callers 1

validateSpecialMethod · 0.45

Calls 2

indexMethod · 0.95
removeMethod · 0.95

Tested by

no test coverage detected