All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.kotlin.redis.op.BitFieldGetCommand.kt Maven / Gradle / Ivy

The newest version!
package io.vertx.kotlin.redis.op

import io.vertx.redis.op.BitFieldGetCommand

fun BitFieldGetCommand(
  offset: Long? = null,
  type: String? = null): BitFieldGetCommand = io.vertx.redis.op.BitFieldGetCommand().apply {

  if (offset != null) {
    this.setOffset(offset)
  }
  if (type != null) {
    this.setType(type)
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy