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

org.atnos.eff.Memoized.scala Maven / Gradle / Ivy

The newest version!
package org.atnos.eff

sealed trait Memoized[A]

case class Store[A](key: AnyRef, a: () => A) extends Memoized[A]
case class GetCache() extends Memoized[Cache]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy