copy method

  1. @override
Some<T> copy()
override

Shallow copies this Option

Implementation

@override
Some<T> copy() {
  return Some(v);
}