Returns the reference to the array that backs this list. Alterations to the array will be visible to the DoubelList and vise versa. The array returned may not the the same size as the value returned by #size() @return the underlying array used by this DoubleList
()
| 219 | * @return the underlying array used by this DoubleList |
| 220 | */ |
| 221 | public double[] getBackingArray() |
| 222 | { |
| 223 | return array; |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * Obtains a view of this double list as a dense vector with equal length. |
no outgoing calls
no test coverage detected