Value<T> constructor

Value<T>(
  1. T val
)

Constructs a new Value with the provided initial value.

Implementation

Value(T val) {
  _value = val;
  _fillInitialStatus();
}