Returns element at the specified position. This method does not do bounds check and may cause memory corruption if index is out of bounds. Instead, the responsibility to check bounds is placed on application code, which is often the case anyway, for example in indexed for() loop. @param index of th
(int index)
| 114 | * @return element at the specified position. |
| 115 | */ |
| 116 | public byte getQuick(int index) { |
| 117 | assert index < pos; |
| 118 | return data[index]; |
| 119 | } |
| 120 | |
| 121 | @Override |
| 122 | public int hashCode() { |