• Home
Name Date Size #Lines LOC

..--

benchmark/12-May-2024-3929

doc/12-May-2024-7,3386,606

example/12-May-2024-381223

meta/12-May-2024-1716

test/12-May-2024-8,4536,781

CMakeLists.txtD12-May-2024628 2718

READMED12-May-2024882 2920

README.mdD12-May-2024574 2114

index.htmlD12-May-2024370 1812

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