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.
()
| 739 | * with a for() loop, but modifying the list will have terrible consequences. |
| 740 | */ |
| 741 | public long[] values() { |
| 742 | crop(); |
| 743 | return data; |
| 744 | } |
| 745 | |
| 746 | |
| 747 | @Override |