Some.get

Get the value from this object.

struct Some(T)
@nogc @safe pure nothrow @property
inout(T)
get
inout
(
)
out (value) { assert (value !is null, "Some returned null!"); }
if (
is(T == class) ||
isPointer!T
)

Return Value

Type: inout(T)

The value wrapped by this object.

Meta