Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benchmark/ | 12-May-2024 | - | 39 | 29 | ||
doc/ | 12-May-2024 | - | 7,338 | 6,606 | ||
example/ | 12-May-2024 | - | 381 | 223 | ||
meta/ | 12-May-2024 | - | 17 | 16 | ||
test/ | 12-May-2024 | - | 8,453 | 6,781 | ||
CMakeLists.txt | D | 12-May-2024 | 628 | 27 | 18 | |
README | D | 12-May-2024 | 882 | 29 | 20 | |
README.md | D | 12-May-2024 | 574 | 21 | 14 | |
index.html | D | 12-May-2024 | 370 | 18 | 12 |
README
1Boost Endian library 2 3The Endian library is included in Boost release 1.58.0 and later. 4 5See http://boostorg.github.io/endian to browse the documentation without having to 6download the library or install Boost. 7 8To experiment with the Endian library, various other boost libraries must be 9available. So you need to install Boost or clone a current version of boostorg/boost 10if you have not already done so. 11 12Boost.Endian is a header-only library, so there is no need to run a build 13for it, although you may need to do a "b2 headers". 14 15If your clone of boost is already in place, please remember to: 16 17 cd boost 18 git pull 19 git submodule update --init 20 git submodule update 21 ./b2 headers 22 23On Windows, "./" is unnecessary. 24 25--------------------------- 26Copyright Beman Dawes, 2013 27 28Distributed under the Boost Software License, Version 1.0. 29http://www.boost.org/LICENSE_1_0.txt
README.md
1# Boost.Endian 2 3The Endian library provides facilities for dealing with 4[endianness](https://en.wikipedia.org/wiki/Endianness). 5It's part of Boost since release 1.58.0. See 6[the documentation](http://boost.org/libs/endian) for more information. 7 8## Supported compilers 9 10* g++ 4.4 or later 11* clang++ 3.3 or later 12* Visual Studio 2008 or later 13 14Tested on [Travis](https://travis-ci.org/boostorg/endian/) and 15[Appveyor](https://ci.appveyor.com/project/pdimov/endian/). 16 17## License 18 19Distributed under the 20[Boost Software License, Version 1.0](http://boost.org/LICENSE_1_0.txt). 21