Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.drone/ | 25-Apr-2025 | - | 60 | 35 | ||
doc/ | 25-Apr-2025 | - | 1,182 | 884 | ||
include/boost/ | 25-Apr-2025 | - | 1,988 | 1,341 | ||
meta/ | 25-Apr-2025 | - | 15 | 14 | ||
test/ | 25-Apr-2025 | - | 2,008 | 1,446 | ||
.drone.star | D | 25-Apr-2025 | 10 KiB | 50 | 46 | |
.gitattributes | D | 25-Apr-2025 | 3.8 KiB | 97 | 91 | |
.travis.yml | D | 25-Apr-2025 | 12.1 KiB | 429 | 373 | |
CMakeLists.txt | D | 25-Apr-2025 | 750 | 26 | 19 | |
README.md | D | 25-Apr-2025 | 2.2 KiB | 31 | 21 | |
appveyor.yml | D | 25-Apr-2025 | 2.5 KiB | 81 | 70 |
README.md
1# Boost.Integer 2 3Boost.Integer, part of collection of the [Boost C++ Libraries](https://github.com/boostorg), provides 4integer type support, particularly helpful in generic programming. It provides the means to select 5an integer type based upon its properties, like the number of bits or the maximum supported value, 6as well as compile-time bit mask selection. There is a derivative of `std::numeric_limits` that provides 7integral constant expressions for `min` and `max`... 8Finally, it provides two compile-time algorithms: determining the highest power of two in a 9compile-time value; and computing min and max of constant expressions. 10 11### Directories 12 13* **doc** - QuickBook documentation sources 14* **include** - Interface headers of Boost.Integer 15* **test** - Boost.Integer unit tests 16 17### More information 18 19* [Documentation](https://boost.org/libs/integer) 20* [Report bugs](https://github.com/boostorg/integer/issues/new). Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well. 21* Submit your patches as pull requests against **develop** branch. Note that by submitting patches you agree to license your modifications under the [Boost Software License, Version 1.0](https://www.boost.org/LICENSE_1_0.txt). 22 23### Build status 24 25Master: [](https://ci.appveyor.com/project/Lastique/integer/branch/master) [](https://travis-ci.org/boostorg/integer) [](https://drone.cpp.al/boostorg/integer) 26Develop: [](https://ci.appveyor.com/project/Lastique/integer/branch/develop) [](https://travis-ci.org/boostorg/integer) [](https://drone.cpp.al/boostorg/integer) 27 28### License 29 30Distributed under the [Boost Software License, Version 1.0](https://www.boost.org/LICENSE_1_0.txt). 31