28 Jul
2026
28 Jul
'26
12:11 p.m.
I tried a few things with boost::int128. Including something (sort of) fun: 34 factorial. I like this, pushing past the limits of uint64_t. (Proper review to follow) - Nigel 34! = *295232799039604140847618609643520000000* std::cerr << "34! = " << fac<boost::int128::uint128_t>(34) << std::endl; Python (for a second opinion):
math.factorial(34) *295232799039604140847618609643520000000*