Resets the size of this list to zero. Does not overwrite the underlying array with empty values. Use clear(0) to overwrite it.
()
| 232 | * Use <code>clear(0)</code> to overwrite it. |
| 233 | */ |
| 234 | public void clear() { |
| 235 | pos = 0; |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * {@inheritDoc} |
no outgoing calls