abstract class LazyCell[A] extends Cell[A]
Ordering
- Alphabetic
- By Inheritance
Inherited
- LazyCell
- Cell
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new LazyCell()
Concrete Value Members
- def evaluated: Boolean
Whether or not the cell value has been evaluated yet.
Whether or not the cell value has been evaluated yet. Sometimes it is useful to know this to avoid unnecessarily evaluating the cell value.
- Definition Classes
- → Cell
- def toString(): String
- Definition Classes
- Cell → AnyRef → Any
- def value: A
The value in the cell.
The value in the cell. Calling this method may force the value to be evaluated.
- Definition Classes
- → Cell
A cell that evaluates its value on demand. Cell access is unsychronized for performance reasons. However the cell may be safely accessed from multiple threads provided its
create
method is idempotent.