Value<T> constructor
Value<T> (
- T val
Constructs a new Value
with the provided initial value.
Implementation
Value(T val) {
_value = val;
_fillInitialStatus();
}
Constructs a new Value
with the provided initial value.
Value(T val) {
_value = val;
_fillInitialStatus();
}