unwrap method

T unwrap()

Returns the contained Some value, consuming the self value.

Implementation

T unwrap() {
  return v as T;
}