operator<<#

Fully qualified name: carb::math::operator<<

Defined in carb/math/Int128.h

inline ::std::ostream &carb::math::operator<<(
::std::ostream &os,
const ::carb::math::uint128_t &val,
)#

Stream insertion operator for unsigned 128-bit integers.

Will format as hex or decimal depending on the mode of the stream. Octal formatting is not supported and will format as decimal.

Parameters:
  • os – The stream to insert into.

  • val – The unsigned 128-bit integer.

Returns:

os