boost_endian 0.1.0

Boost C++ library boost_endian packaged using Zanbil
Documentation
// Copyright 2020 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#include <boost/endian/conversion.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/config.hpp>
#include <cstddef>

template<class T> void test_reverse( T x )
{
    using boost::endian::endian_reverse;

    T x2( x );

    x2 = endian_reverse( endian_reverse( x2 ) );
    BOOST_TEST( x == x2 );

    x2 = boost::endian::native_to_little( boost::endian::little_to_native( x2 ) );
    BOOST_TEST( x == x2 );

    x2 = boost::endian::native_to_big( boost::endian::big_to_native( x2 ) );
    BOOST_TEST( x == x2 );
}

template<class T> void test_reverse_inplace( T x )
{
    using boost::endian::endian_reverse_inplace;

    T x2( x );

    endian_reverse_inplace( x2 );
    endian_reverse_inplace( x2 );
    BOOST_TEST( x == x2 );

    boost::endian::native_to_little_inplace( x2 );
    boost::endian::little_to_native_inplace( x2 );
    BOOST_TEST( x == x2 );

    boost::endian::native_to_big_inplace( x2 );
    boost::endian::big_to_native_inplace( x2 );
    BOOST_TEST( x == x2 );
}

enum E1 { e1 };

#if !defined(BOOST_NO_CXX11_SCOPED_ENUMS)

enum E2: long { e2 };
enum class E3 { e3 };
enum class E4: long { e4 };

#endif

int main()
{
    test_reverse( 1 );

#if !defined(BOOST_NO_CXX11_SCOPED_ENUMS)

    test_reverse( E3::e3 );
    test_reverse( E4::e4 );

#endif

    test_reverse_inplace( 1 );
    test_reverse_inplace( true );

    test_reverse_inplace( 1.0f );
    test_reverse_inplace( 1.0 );

    test_reverse_inplace( e1 );

#if !defined(BOOST_NO_CXX11_SCOPED_ENUMS)

    test_reverse_inplace( e2 );
    test_reverse_inplace( E3::e3 );
    test_reverse_inplace( E4::e4 );

#endif

    return boost::report_errors();
}