diff --git a/Redcraft.Utility/Source/Public/Numeric/Math.h b/Redcraft.Utility/Source/Public/Numeric/Math.h index d53d83b..cf9675c 100644 --- a/Redcraft.Utility/Source/Public/Numeric/Math.h +++ b/Redcraft.Utility/Source/Public/Numeric/Math.h @@ -399,6 +399,8 @@ NODISCARD FORCEINLINE constexpr T DivAndCeil(T A, T B) return A >= 0 ? (A + B - 1) / B : A / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndCeil) + /** @return The quotient of the division of the given values and rounds down. */ template NODISCARD FORCEINLINE constexpr T DivAndFloor(T A, T B) @@ -406,6 +408,8 @@ NODISCARD FORCEINLINE constexpr T DivAndFloor(T A, T B) return A >= 0 ? A / B : (A - B + 1) / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndFloor) + /** @return The quotient of the division of the given values and rounds to nearest. */ template NODISCARD FORCEINLINE constexpr T DivAndRound(T A, T B) @@ -415,6 +419,8 @@ NODISCARD FORCEINLINE constexpr T DivAndRound(T A, T B) : (A - B / 2 + 1) / B; } +RESOLVE_ARITHMETIC_AMBIGUITY_2_ARGS(CIntegral, DivAndRound) + /** @return true if the given values are nearly equal, false otherwise. */ template NODISCARD FORCEINLINE constexpr bool IsNearlyEqual(T A, T B, T Epsilon = TNumericLimits::Epsilon())