Add a new entry to the list. @webref intlist:method @webBrief Add a new entry to the list
(int value)
| 267 | * @webBrief Add a new entry to the list |
| 268 | */ |
| 269 | public void append(int value) { |
| 270 | if (count == data.length) { |
| 271 | data = PApplet.expand(data); |
| 272 | } |
| 273 | data[count++] = value; |
| 274 | } |
| 275 | |
| 276 | |
| 277 | public void append(int[] values) { |
no test coverage detected