xtdb.arrow.VectorPosition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtdb-core Show documentation
Show all versions of xtdb-core Show documentation
An open source document database with bitemporal graph queries
The newest version!
package xtdb.arrow
interface VectorPosition {
var position: Int
fun getPositionAndIncrement() = position++
companion object {
@JvmOverloads
@JvmStatic
fun build(initialPosition: Int = 0): VectorPosition {
return object : VectorPosition {
override var position: Int = initialPosition
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy