Returns the actual array being used to store the data. For advanced users, this is the fastest way to access a large list. Suitable for iterating with a for() loop, but modifying the list will have terrible consequences.
()
| 720 | * with a for() loop, but modifying the list will have terrible consequences. |
| 721 | */ |
| 722 | public int[] values() { |
| 723 | crop(); |
| 724 | return data; |
| 725 | } |
| 726 | |
| 727 | |
| 728 | @Override |