Add this value, but only if it's not already in the list.
(float value)
| 327 | |
| 328 | /** Add this value, but only if it's not already in the list. */ |
| 329 | public void appendUnique(float value) { |
| 330 | if (!hasValue(value)) { |
| 331 | append(value); |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | |
| 336 | // public void insert(int index, int value) { |