Maybe.this

Constructing Maybe from value. If Maybe is created with the constructor, it is considered non empty and isNothing returns false.

struct Maybe(T)
pure
this
()
if (
is(T == struct) ||
isAssociativeArray!T
||
isBasicType!T
)

Meta