final class AssignedCell[+A] extends Cell[A]
Ordering
- Alphabetic
- By Inheritance
Inherited
- AssignedCell
- Cell
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AssignedCell(value: A)
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
- val 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 with a fixed value assigned to it.