mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
AK: Add shorthands for u384, u768, and u1536
This commit is contained in:
parent
6b5c6e7c03
commit
be68f747b6
Notes:
sideshowbarker
2024-07-17 05:13:53 +09:00
Author: https://github.com/msvisser Commit: https://github.com/SerenityOS/serenity/commit/be68f747b6 Pull-request: https://github.com/SerenityOS/serenity/pull/21875 Issue: https://github.com/SerenityOS/serenity/issues/21211
@ -649,7 +649,10 @@ struct Formatter<T> : StandardFormatter {
|
|||||||
// these sizes should suffice for most usecases
|
// these sizes should suffice for most usecases
|
||||||
using u128 = AK::UFixedBigInt<128>;
|
using u128 = AK::UFixedBigInt<128>;
|
||||||
using u256 = AK::UFixedBigInt<256>;
|
using u256 = AK::UFixedBigInt<256>;
|
||||||
|
using u384 = AK::UFixedBigInt<384>;
|
||||||
using u512 = AK::UFixedBigInt<512>;
|
using u512 = AK::UFixedBigInt<512>;
|
||||||
|
using u768 = AK::UFixedBigInt<768>;
|
||||||
using u1024 = AK::UFixedBigInt<1024>;
|
using u1024 = AK::UFixedBigInt<1024>;
|
||||||
|
using u1536 = AK::UFixedBigInt<1536>;
|
||||||
using u2048 = AK::UFixedBigInt<2048>;
|
using u2048 = AK::UFixedBigInt<2048>;
|
||||||
using u4096 = AK::UFixedBigInt<4096>;
|
using u4096 = AK::UFixedBigInt<4096>;
|
||||||
|
Loading…
Reference in New Issue
Block a user