From be68f747b6ec0352b7788c8886550d13dbe6612c Mon Sep 17 00:00:00 2001 From: Michiel Visser Date: Fri, 10 Nov 2023 16:19:54 +0100 Subject: [PATCH] AK: Add shorthands for u384, u768, and u1536 --- AK/UFixedBigInt.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AK/UFixedBigInt.h b/AK/UFixedBigInt.h index e687a19eceb..28f4b7b35d6 100644 --- a/AK/UFixedBigInt.h +++ b/AK/UFixedBigInt.h @@ -649,7 +649,10 @@ struct Formatter : StandardFormatter { // these sizes should suffice for most usecases using u128 = AK::UFixedBigInt<128>; using u256 = AK::UFixedBigInt<256>; +using u384 = AK::UFixedBigInt<384>; using u512 = AK::UFixedBigInt<512>; +using u768 = AK::UFixedBigInt<768>; using u1024 = AK::UFixedBigInt<1024>; +using u1536 = AK::UFixedBigInt<1536>; using u2048 = AK::UFixedBigInt<2048>; using u4096 = AK::UFixedBigInt<4096>;