Cache

edomata.backend.Cache
See theCache companion object
trait Cache[F[_], I, T]

Attributes

Companion
object
Source
Cache.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def add(key: I, value: T): F[Option[(I, T)]]

Attributes

Source
Cache.scala
def get(key: I): F[Option[T]]

Attributes

Source
Cache.scala
def replace(key: I, value: T)(pred: T => Boolean): F[Option[(I, T)]]

Attributes

Source
Cache.scala