Constructors

Synopses

Declared in <bdldfp_uint128.h>

Create an Uint128 object having the value 0

Uint128();

Create an Uint128 object having the 128‐bit integer bit pattern of the value of the specified initialValue.

Uint128(bsls::Types::Uint64 initialValue);

Create an Uint128 object having the 128‐bit pattern specified by initialHigh..initialLow.

Uint128(
    bsls::Types::Uint64 initialHigh,
    bsls::Types::Uint64 initialLow);

Parameters

Name

Description

initialValue

64‐bit value used as the low‐order bits

initialHigh

high‐order 64 bits of the value

initialLow

low‐order 64 bits of the value

Created with MrDocs