copy method

Cell<T> copy()

Shallow copy of this.

Implementation

Cell<T> copy() {
  return Cell(_val);
}