Add a new entry to the list. @webref stringlist:method @brief Add a new entry to the list
(String value)
| 297 | * @brief Add a new entry to the list |
| 298 | */ |
| 299 | public void append(String value) { |
| 300 | if (count == data.length) { |
| 301 | data = PApplet.expand(data); |
| 302 | } |
| 303 | data[count++] = value; |
| 304 | } |
| 305 | |
| 306 | |
| 307 | public void append(String[] values) { |
no test coverage detected