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.
()
| 783 | * with a for() loop, but modifying the list will have terrible consequences. |
| 784 | */ |
| 785 | public double[] values() { |
| 786 | crop(); |
| 787 | return data; |
| 788 | } |
| 789 | |
| 790 | |
| 791 | /** Implemented this way so that we can use a FloatList in a for loop. */ |