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