DConsumable

A type that is consumable by D code without much fuss

Constructors

this
this(T rawValue)

Create a new DConsumable from the given type

Alias This

value

Members

Functions

convert
Nullable!T convert()

Convert the DConsumable to a native D type, possibly failing; if exact, type coercion is not performed

opCast
T opCast()

Cast operation

opCast
T opCast()

Cast operation

Variables

value
Algebraic!(typeof(null), double, string, bool, Table, Userdata, DConsumableFunction) value;

The value of this DConsumable

Meta