Add a new entry to the list. @webref intlist:method @brief Add a new entry to the list
(int value)
| 272 | * @brief Add a new entry to the list |
| 273 | */ |
| 274 | public void append(int value) { |
| 275 | if (count == data.length) { |
| 276 | data = PApplet.expand(data); |
| 277 | } |
| 278 | data[count++] = value; |
| 279 | } |
| 280 | |
| 281 | |
| 282 | public void append(int[] values) { |
no test coverage detected