divide_and_modulus#

Fully qualified name: carb::math::divide_and_modulus

Defined in carb/math/Int128.h

inline uint128_t carb::math::divide_and_modulus(
const uint128_t &dividend,
const uint128_t &divisor,
uint128_t &modulus,
) noexcept#

Performs a division operation on two unsigned 128-bit integers and provides both the quotient and remainder.

Effectively:

quotient = dividend / divisor;
modulus = dividend % divisor;

Parameters:
  • dividend – The 128-bit unsigned dividend.

  • divisor – The 128-bit unsigned divisor.

  • modulus – Receives the 128-bit unsigned remainder.

Returns:

The 128-bit unsigned quotient.