set method

void set(
  1. T val
)

Sets the inner value to val.

Implementation

void set(T val) {
  _val = val;
}