What prevents C++ standard from having a 128/256 bit integer?
From other stackoverflow questions, recommendation to achieve this are Boost or compiler extension __int128 or std::bitset<>
So it is obvious that programmers are using/needing this. Why is there a reluctance in adopting it?
_ExtIntsupports integers with bitwidth of 1 all the way to a whopping 16,777,215. Even though there is nostd::uint16777215_t. Alas. Sad panda.APInt<std::size_t>in the standard library instead and let compilers specialize it for sizes where hardware support is available.