Some<T extends Object> constructor

const Some<T extends Object>(
  1. T v
)

Create a Some option with the given value.

Implementation

const Some(T v)
    : _some = v,
      super._();