[all packages]
[package pizza.lang]
[class hierarchy]
[index]
public class pizza.lang.Cell<A>
(source file: pizza/lang/Cell.pizza)
java.lang.Object
|
+----pizza.lang.Cell<A>
The pure class interface.
public class Cell<A>
implements java.io.Serializable
-
A class for (mutable) cells of values.

Cell(A)
-
Constructs a new Cell.

value
-

equals(Object)
- is this cell (structurally) equal to another cell?
hashCode()
-
a hashcode for this cell.
toString()
- a string representation of this cell

Cell
public case Cell(A value);
-
Constructs a new Cell.
- Parameters:
- value - value in the cell

value
public A value;

hashCode
public int hashCode();
-
a hashcode for this cell.
- Overrides:
- hashCode in class Object
equals
public boolean equals(Object other);
- is this cell (structurally) equal to another cell?
- Overrides:
- equals in class Object
toString
public String toString();
- a string representation of this cell
- Overrides:
- toString in class Object
[all packages]
[package pizza.lang]
[class hierarchy]
[index]
pizza.lang.Cell.html