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 @brief Create a new array with a copy of all the values
()
| 774 | * @brief Create a new array with a copy of all the values |
| 775 | */ |
| 776 | public int[] array() { |
| 777 | return array(null); |
| 778 | } |
| 779 | |
| 780 | |
| 781 | /** |