Creates an ordered array with a capacity of 16.
()
| 79 | |
| 80 | /** Creates an ordered array with a capacity of 16. */ |
| 81 | public CharArray () { |
| 82 | this(true, CAPACITY); |
| 83 | } |
| 84 | |
| 85 | /** Creates an ordered array with the specified capacity. */ |
| 86 | public CharArray (int capacity) { |