Cell

play.api.mvc.request.Cell
See theCell companion object
trait Cell[+A]

A cell represents a memory location that stores a value. The cell abstracts away the details of how the value is stored. For example, an AssignedCell stores a simple value, whereas a LazyCell only calculates the value when it is first needed.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class AssignedCell[A]
class LazyCell[A]

Members list

Value members

Abstract methods

Whether or not the cell value has been evaluated yet. Sometimes it is useful to know this to avoid unnecessarily evaluating the cell value.

Whether or not the cell value has been evaluated yet. Sometimes it is useful to know this to avoid unnecessarily evaluating the cell value.

Attributes

def value: A

The value in the cell. Calling this method may force the value to be evaluated.

The value in the cell. Calling this method may force the value to be evaluated.

Attributes

Concrete methods

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any