override fun next()

in blockmap/src/main/kotlin/com/jetbrains/plugin/blockmap/core/FastCDCImpl.kt [79:84]


  override fun next(): Chunk {
    if (cur == -1) throw NoSuchElementException()
    val chunk = cut(bytesProcessed)
    bytesProcessed += chunk.length
    return chunk
  }