Add a new entry to the list. @webref intlist:method @webBrief Add a new entry to the list
(long value)
| 279 | * @webBrief Add a new entry to the list |
| 280 | */ |
| 281 | public void append(long value) { |
| 282 | if (count == data.length) { |
| 283 | data = PApplet.expand(data); |
| 284 | } |
| 285 | data[count++] = value; |
| 286 | } |
| 287 | |
| 288 | |
| 289 | public void append(int[] values) { |