mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 02:27:19 +02:00
LibCrypto: Add naive implementation of {Un,}SignedBigInteger::to_double
This commit is contained in:
committed by
Linus Groh
parent
62bc238ac3
commit
bcdad57670
Notes:
sideshowbarker
2024-07-18 04:34:19 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/bcdad576700 Pull-request: https://github.com/SerenityOS/serenity/pull/9859 Reviewed-by: https://github.com/linusg ✅
@@ -63,6 +63,14 @@ u64 SignedBigInteger::to_u64() const
|
||||
return ~(unsigned_value - 1); // equivalent to `-unsigned_value`, but doesnt trigger UBSAN
|
||||
}
|
||||
|
||||
double SignedBigInteger::to_double() const
|
||||
{
|
||||
double unsigned_value = m_unsigned_data.to_double();
|
||||
if (!m_sign)
|
||||
return unsigned_value;
|
||||
return -unsigned_value;
|
||||
}
|
||||
|
||||
FLATTEN SignedBigInteger SignedBigInteger::plus(const SignedBigInteger& other) const
|
||||
{
|
||||
// If both are of the same sign, just add the unsigned data and return.
|
||||
|
||||
Reference in New Issue
Block a user