redis.algebra

string

object string extends StringInstances with StringFunctions

Linear Supertypes
StringFunctions, InjectFunctions, StringInstances, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. string
  2. StringFunctions
  3. InjectFunctions
  4. StringInstances
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def append[F[_]](key: ByteString, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def bitcount[F[_]](key: ByteString, range: Option[(Long, Long)])(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  7. def bitop[F[_]](operation: BitOperation)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def decr[F[_]](key: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  10. def decrby[F[_]](key: ByteString, decrement: Long)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def get[F[_]](key: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Option[ByteString]]

    Definition Classes
    StringFunctions
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def getbit[F[_]](key: ByteString, offset: Long)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Boolean]

    Definition Classes
    StringFunctions
  17. def getrange[F[_]](key: ByteString, start: Long, end: Long)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, ByteString]

    Definition Classes
    StringFunctions
  18. def getset[F[_]](key: ByteString, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Option[ByteString]]

    Definition Classes
    StringFunctions
  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. def incr[F[_]](key: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  21. def incrby[F[_]](key: ByteString, increment: Long)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  22. def incrbyfloat[F[_]](key: ByteString, increment: BigDecimal)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, BigDecimal]

    Definition Classes
    StringFunctions
  23. def inject[F[_], G[_], A](ga: G[Free[F, A]])(implicit F: Functor[F], I: Inject[G, F]): Free[F, A]

    Definition Classes
    InjectFunctions
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def match_[F[_], G[_], A](fa: Free[F, A])(implicit F: Functor[F], I: Inject[G, F]): Option[G[Free[F, A]]]

    Definition Classes
    InjectFunctions
  26. def mget[F[_]](keys: NonEmptyList[ByteString])(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Seq[Option[ByteString]]]

    Definition Classes
    StringFunctions
  27. def mset[F[_]](pairs: NonEmptyList[(ByteString, ByteString)])(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Status]

    Definition Classes
    StringFunctions
  28. def msetnx[F[_]](pairs: NonEmptyList[(ByteString, ByteString)])(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Boolean]

    Definition Classes
    StringFunctions
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def psetex[F[_]](key: ByteString, in: Milliseconds, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Status]

    Definition Classes
    StringFunctions
  33. def set[F[_]](key: ByteString, value: ByteString, in: Option[\/[Seconds, Milliseconds]] = None, option: Option[SetOption] = None)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Boolean]

    Definition Classes
    StringFunctions
  34. def setbit[F[_]](key: ByteString, offset: Long, value: Boolean)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  35. def setex[F[_]](key: ByteString, in: Seconds, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Status]

    Definition Classes
    StringFunctions
  36. def setnx[F[_]](key: ByteString, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Boolean]

    Definition Classes
    StringFunctions
  37. def setrange[F[_]](key: ByteString, offset: Long, value: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  38. implicit val stringAlgebraFunctor: Functor[StringAlgebra]

    Definition Classes
    StringInstances
  39. def strlen[F[_]](key: ByteString)(implicit arg0: Functor[F], I: Inject[StringAlgebra, F]): Free[F, Long]

    Definition Classes
    StringFunctions
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from StringFunctions

Inherited from InjectFunctions

Inherited from StringInstances

Inherited from AnyRef

Inherited from Any

Ungrouped