()
| 647 | } |
| 648 | |
| 649 | int[] toIntArray() { |
| 650 | // Arrays.copyOfRange() is not available under GWT |
| 651 | int size = size(); |
| 652 | int[] result = new int[size]; |
| 653 | System.arraycopy(array, start, result, 0, size); |
| 654 | return result; |
| 655 | } |
| 656 | |
| 657 | private static final long serialVersionUID = 0; |
| 658 | } |