Create a new array with a copy of all the values. @return an array sized by the length of the list with each of the values. @webref intlist:method @webBrief Create a new array with a copy of all the values
()
| 760 | * @webBrief Create a new array with a copy of all the values |
| 761 | */ |
| 762 | public int[] toArray() { |
| 763 | return toArray(null); |
| 764 | } |
| 765 | |
| 766 | |
| 767 | @Deprecated |
no test coverage detected