/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP #define SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm::type bitrev_table_impl( Container const& cont, sprout::index_tuple, std::size_t bit_length, typename sprout::container_traits::difference_type offset, typename sprout::container_traits::size_type size ) { return sprout::remake( cont, sprout::size(cont), (Indexes >= offset && Indexes < offset + size ? sprout::bit_reverse_in( static_cast::value_type>(Indexes - offset), bit_length ) : *sprout::next(sprout::internal_begin(cont), Indexes) )... ); } } // namespace detail // // bitrev_table // template inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm::type bitrev_table(Container const& cont) { return sprout::fixed::detail::bitrev_table_impl( cont, sprout::container_indexes::make(), sprout::empty(cont) ? 0 : sprout::bit_length(sprout::size(cont) - 1) , sprout::internal_begin_offset(cont), sprout::size(cont) ); } } // namespace fixed using sprout::fixed::bitrev_table; } // namespace sprout #endif // #ifndef SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP