Mtype

Base class for all math types.

Constructors

this
this(ulong precision)

Precision Constructor

this
this(T num)

Normal Constructor

Members

Functions

applyOp
bool applyOp(dstring op, Mtype!W rhs)

Apply an operation to an Mtype.

applyOpRight
bool applyOpRight(dstring op, Mtype!W lhs)

Apply an operation from the right side.

containedType
auto containedType()

Return the type if the value contained.

fromDstring
void fromDstring(dstring from)

Converts a dstring to an Mtype.

toDstring
dstring toDstring()

Converts the Mtype to a dstring.

val
T val()

Return the value stored in the Mtype.

Variables

contained
T contained;
Undocumented in source.

Meta