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

Method appendUnique

core/src/processing/data/StringList.java:322–326  ·  view source on GitHub ↗

Add this value, but only if it's not already in the list.

(String value)

Source from the content-addressed store, hash-verified

320
321 /** Add this value, but only if it's not already in the list. */
322 public void appendUnique(String value) {
323 if (!hasValue(value)) {
324 append(value);
325 }
326 }
327
328
329// public void insert(int index, int value) {

Callers 1

getMonoFontFamiliesMethod · 0.95

Calls 2

hasValueMethod · 0.95
appendMethod · 0.95

Tested by

no test coverage detected