override fun hashCode()

in blockmap/src/main/kotlin/com/jetbrains/plugin/blockmap/core/Chunk.kt [27:31]


  override fun hashCode(): Int {
    var result = hash.hashCode()
    result = 31 * result + length
    return result
  }