Class/Object

quasar.effect.KeyValueStore

Ops

Related Docs: object Ops | package KeyValueStore

Permalink

final class Ops[K, V, S[_]] extends LiftedOps[[γ$0$]KeyValueStore[K, V, γ$0$], S]

Linear Supertypes
LiftedOps[[γ$0$]KeyValueStore[K, V, γ$0$], S], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ops
  2. LiftedOps
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Ops()(implicit S: :<:[[γ$2$]KeyValueStore[K, V, γ$2$], S])

    Permalink

Type Members

  1. type F[A] = Free[S, A]

    Permalink
    Definition Classes
    LiftedOps

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def alter(k: K, f: (Option[V]) ⇒ V): F[V]

    Permalink

    Similar to alterS, but returns the updated value.

  5. def alterS[A](k: K, f: (Option[V]) ⇒ (V, A)): F[A]

    Permalink

    Atomically associates the given key with the first part of the result of applying the given function to the value currently associated with the key, returning the second part of the result.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compareAndPut(k: K, expect: Option[V], update: V): F[Boolean]

    Permalink

    Associate update with the given key if the current value at the key is expect, passing None for expect indicates that they key is expected not to be associated with a value.

    Associate update with the given key if the current value at the key is expect, passing None for expect indicates that they key is expected not to be associated with a value. Returns whether the value was updated.

  9. def contains(k: K): F[Boolean]

    Permalink

    Returns whether a value is associated with the given key.

  10. def delete(k: K): F[Unit]

    Permalink

    Remove any associated with the given key.

  11. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def get(k: K): OptionT[F, V]

    Permalink

    Returns the current value associated with the given key.

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. val keys: F[Vector[K]]

    Permalink

    Returns current keys

  19. def lift[A](ga: KeyValueStore[K, V, A]): F[A]

    Permalink
    Definition Classes
    LiftedOps
  20. def modify(k: K, f: (V) ⇒ V): F[Unit]

    Permalink

    Atomically updates the value associated with the given key with the result of applying the given function to the current value, if defined.

  21. def move(src: K, dst: K): F[Unit]

    Permalink

    Moves/renames key

  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def put(k: K, v: V): F[Unit]

    Permalink

    Associate the given value with the given key.

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LiftedOps[[γ$0$]KeyValueStore[K, V, γ$0$], S]

Inherited from AnyRef

Inherited from Any

Ungrouped