Some

This type represents a value which cannot be null by its contracts.

Constructors

this
this()

Disable default construction for Some!T types.

this
this(inout(U) value)

Construct this object by wrapping a given value.

Alias This

get

Implicitly convert Some!T objects to T.

Members

Functions

opAssign
void opAssign(U value)

Assign another value to this object.

Properties

get
inout(T) get [@property getter]

Get the value from this object.

Meta