Cache

class Cache[V](compiler: String => Try[V], default: Try[V])

A very basic cache of some resource V which an be created based on an input stream

Value Params
compiler

the compiler function - compile some expression into a value of type V

class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(expression: String): Try[V]
def map[A](thunk: V => A): Cache[A]