Add a new entry to the list. @webref doublelist:method @brief Add a new entry to the list
(double value)
| 312 | * @brief Add a new entry to the list |
| 313 | */ |
| 314 | public void append(double value) { |
| 315 | if (count == data.length) { |
| 316 | data = PApplet.expand(data); |
| 317 | } |
| 318 | data[count++] = value; |
| 319 | } |
| 320 | |
| 321 | |
| 322 | public void append(double[] values) { |
no test coverage detected