(Consumer action)
| 346 | } |
| 347 | |
| 348 | @Override |
| 349 | public boolean tryAdvance(Consumer action) { |
| 350 | if(i < end) { |
| 351 | if(i-base == 32){ |
| 352 | array = arrayFor(i); |
| 353 | base += 32; |
| 354 | } |
| 355 | action.accept(array[i++ & 0x01f]); |
| 356 | return true; |
| 357 | } |
| 358 | return false; |
| 359 | } |
| 360 | |
| 361 | @Override |
| 362 | public Spliterator trySplit() { |