aboutsummaryrefslogtreecommitdiff
path: root/stage1/Cache.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/Cache.scala')
-rw-r--r--stage1/Cache.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/stage1/Cache.scala b/stage1/Cache.scala
deleted file mode 100644
index a8036e5..0000000
--- a/stage1/Cache.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-package cbt
-/**
-Caches exactly one value.
-Is there a less boiler-platy way to achieve this, that doesn't
-require creating an instance for each thing you want to cache?
-*/
-class Cache[T]{
- private var value: Option[T] = None
- def apply(value: => T) = this.synchronized{
- if(!this.value.isDefined)
- this.value = Some(value)
- this.value.get
- }
-}