io.vertx.kotlin.redis.op.BitFieldSetCommand.kt Maven / Gradle / Ivy
The newest version!
package io.vertx.kotlin.redis.op
import io.vertx.redis.op.BitFieldSetCommand
fun BitFieldSetCommand(
offset: Long? = null,
type: String? = null,
value: Long? = null): BitFieldSetCommand = io.vertx.redis.op.BitFieldSetCommand().apply {
if (offset != null) {
this.setOffset(offset)
}
if (type != null) {
this.setType(type)
}
if (value != null) {
this.setValue(value)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy