(C++) Boost.Integer
February 24, 2017 · View on GitHub
(C++) Boost.Integer
Boost.Integer is a Boost library for working with integers.
#include <limits> #include <iostream> #include <boost/cstdint.hpp> int main() { std::cout << std::numeric_limits<int>::max() << '\n' << std::numeric_limits<uint_fast64_t>::max() << '\n'; }
Screen output:
2147483647 18446744073709551615