Amount.this - multiple declarations

Function Amount.this

Construct an instance of an Amount

ref this (
  ulong units
) pure nothrow @nogc @safe;

Parameters

NameDescription
units The monetary amount this new instance represent. The unit is the smaller unit of currency (see UnitPerCoin)

Function Amount.this

Copy constructor

ref this (
  in const(Amount) other
) pure nothrow @nogc @safe;