()
| 409 | } |
| 410 | |
| 411 | public Path seekZ() { |
| 412 | int count = 0; |
| 413 | while (count < capacity) { |
| 414 | if (Unsafe.getByte(headPtr + count) == NULL) { |
| 415 | tailPtr = headPtr + count; |
| 416 | break; |
| 417 | } |
| 418 | count++; |
| 419 | } |
| 420 | return this; |
| 421 | } |
| 422 | |
| 423 | @Override |
| 424 | public final int size() { |