Maybe<T> constructor

const Maybe<T>(
  1. T value
)

Create a Maybe that holds a computed value.

Implementation

const factory Maybe(T value) = MaybeValue;