This commit is contained in:
2025-09-22 13:02:35 +02:00
parent c32b20e5b3
commit 5b95c4dd64
41 changed files with 998 additions and 152 deletions

View File

@@ -132,7 +132,7 @@ class ShortVec(private val initCap: Int = 0): Vec<Short>, BatchSequence<Short> {
array[index] = value
}
override fun idx(value: Short): Int =
override fun indexOf(value: Short): Int =
array.indexOf(value)
companion object {