Package private iterator method to access it as a Span.Iterator.
()
| 393 | |
| 394 | /** Package private iterator method to access it as a Span.Iterator. */ |
| 395 | Span.Iterator spanIterator() { |
| 396 | if (!sorted) { |
| 397 | Collections.sort(rows, new RowSeq.RowSeqComparator()); |
| 398 | sorted = true; |
| 399 | } |
| 400 | return new Span.Iterator(); |
| 401 | } |
| 402 | |
| 403 | /** Iterator for {@link Span}s. */ |
| 404 | final class Iterator implements SeekableView { |
no outgoing calls
no test coverage detected