MCPcopy Index your code
hub / github.com/benfry/processing4 / appendUnique

Method appendUnique

core/src/processing/data/StringList.java:318–322  ·  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

316
317 /** Add this value, but only if it's not already in the list. */
318 public void appendUnique(String value) {
319 if (!hasValue(value)) {
320 append(value);
321 }
322 }
323
324
325// 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