trait StringCommands[F[_], K, V] extends Getter[F, K, V] with Setter[F, K, V] with MultiKey[F, K, V] with Decrement[F, K, V] with Increment[F, K, V] with Bits[F, K, V]

Linear Supertypes
Bits[F, K, V], Increment[F, K, V], Decrement[F, K, V], MultiKey[F, K, V], Setter[F, K, V], Getter[F, K, V], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringCommands
  2. Bits
  3. Increment
  4. Decrement
  5. MultiKey
  6. Setter
  7. Getter
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def append(key: K, value: V): F[Unit]
    Definition Classes
    Setter
  2. abstract def bitCount(key: K, start: Long, end: Long): F[Long]
    Definition Classes
    Bits
  3. abstract def bitCount(key: K): F[Long]
    Definition Classes
    Bits
  4. abstract def bitOpAnd(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  5. abstract def bitOpNot(destination: K, source: K): F[Unit]
    Definition Classes
    Bits
  6. abstract def bitOpOr(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  7. abstract def bitOpXor(destination: K, sources: K*): F[Unit]
    Definition Classes
    Bits
  8. abstract def bitPos(key: K, state: Boolean, start: Long, end: Long): F[Long]
    Definition Classes
    Bits
  9. abstract def bitPos(key: K, state: Boolean, start: Long): F[Long]
    Definition Classes
    Bits
  10. abstract def bitPos(key: K, state: Boolean): F[Long]
    Definition Classes
    Bits
  11. abstract def decr(key: K)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Decrement
  12. abstract def decrBy(key: K, amount: Long)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Decrement
  13. abstract def get(key: K): F[Option[V]]
    Definition Classes
    Getter
  14. abstract def getBit(key: K, offset: Long): F[Option[Long]]
    Definition Classes
    Getter
  15. abstract def getRange(key: K, start: Long, end: Long): F[Option[V]]
    Definition Classes
    Getter
  16. abstract def getSet(key: K, value: V): F[Option[V]]
    Definition Classes
    Setter
  17. abstract def incr(key: K)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Increment
  18. abstract def incrBy(key: K, amount: Long)(implicit N: Numeric[V]): F[Long]
    Definition Classes
    Increment
  19. abstract def incrByFloat(key: K, amount: Double)(implicit N: Numeric[V]): F[Double]
    Definition Classes
    Increment
  20. abstract def mGet(keys: Set[K]): F[Map[K, V]]
    Definition Classes
    MultiKey
  21. abstract def mSet(keyValues: Map[K, V]): F[Unit]
    Definition Classes
    MultiKey
  22. abstract def mSetNx(keyValues: Map[K, V]): F[Boolean]
    Definition Classes
    MultiKey
  23. abstract def set(key: K, value: V, setArgs: SetArgs): F[Boolean]
    Definition Classes
    Setter
  24. abstract def set(key: K, value: V): F[Unit]
    Definition Classes
    Setter
  25. abstract def setEx(key: K, value: V, expiresIn: FiniteDuration): F[Unit]
    Definition Classes
    Setter
  26. abstract def setNx(key: K, value: V): F[Boolean]
    Definition Classes
    Setter
  27. abstract def setRange(key: K, value: V, offset: Long): F[Unit]
    Definition Classes
    Setter
  28. abstract def strLen(key: K): F[Option[Long]]
    Definition Classes
    Getter

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to any2stringadd[StringCommands[F, K, V]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (StringCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to ArrowAssoc[StringCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  8. def ensuring(cond: (StringCommands[F, K, V]) ⇒ Boolean, msg: ⇒ Any): StringCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to Ensuring[StringCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (StringCommands[F, K, V]) ⇒ Boolean): StringCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to Ensuring[StringCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): StringCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to Ensuring[StringCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): StringCommands[F, K, V]
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to Ensuring[StringCommands[F, K, V]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to StringFormat[StringCommands[F, K, V]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def [B](y: B): (StringCommands[F, K, V], B)
    Implicit
    This member is added by an implicit conversion from StringCommands[F, K, V] to ArrowAssoc[StringCommands[F, K, V]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Bits[F, K, V]

Inherited from Increment[F, K, V]

Inherited from Decrement[F, K, V]

Inherited from MultiKey[F, K, V]

Inherited from Setter[F, K, V]

Inherited from Getter[F, K, V]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from StringCommands[F, K, V] to any2stringadd[StringCommands[F, K, V]]

Inherited by implicit conversion StringFormat from StringCommands[F, K, V] to StringFormat[StringCommands[F, K, V]]

Inherited by implicit conversion Ensuring from StringCommands[F, K, V] to Ensuring[StringCommands[F, K, V]]

Inherited by implicit conversion ArrowAssoc from StringCommands[F, K, V] to ArrowAssoc[StringCommands[F, K, V]]

Ungrouped