flatten method

Option<T> flatten()

Converts from Option<Option

Implementation

Option<T> flatten() {
  return v as Option<T>;
}