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::int128_t &val,
)#

Stream insertion operator for signed 128-bit integers.

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

Parameters:
  • os – The stream to insert into.

  • val – The signed 128-bit integer.

Returns:

os