Add this value, but only if it's not already in the list.
(double value)
| 331 | |
| 332 | /** Add this value, but only if it's not already in the list. */ |
| 333 | public void appendUnique(double value) { |
| 334 | if (!hasValue(value)) { |
| 335 | append(value); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | |
| 340 | // public void insert(int index, int value) { |