Int128.this
this
(long lo) @safe pure nothrow @nogcConstruct an Int128 from a long value. The upper 64 bits are formed by sign extension.
Parameters
lo | signed lower 64 bits |
this
(ulong lo) @safe pure nothrow @nogcConstruct an Int128 from a ulong value. The upper 64 bits are set to zero.
Parameters
lo | unsigned lower 64 bits |
this
(long hi, long lo) @safe pure nothrow @nogcConstruct an Int128 from a long value.
Parameters
hi | upper 64 bits |
lo | lower 64 bits |
Construct an Int128 from a Cent.
Parameters
data | Cent data |