Value<T> constructor

Value<T>(
  1. T val
)

Implementation

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