Returns the number of elements in this list. If this list contains more than Integer.MAX_VALUE elements, returns Integer.MAX_VALUE. @return the number of elements in this IntList
()
| 594 | */ |
| 595 | |
| 596 | public int size() |
| 597 | { |
| 598 | return _limit; |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Returns an array containing all of the elements in this list in |
no outgoing calls