#ifndef SPROUT_ALGORITHM_OUTFIT_SWAP_ELEMENT_HPP #define SPROUT_ALGORITHM_OUTFIT_SWAP_ELEMENT_HPP #include #include #include #include #include namespace sprout { namespace outfit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> swap_element_impl( Container const& cont, typename sprout::fixed_container_traits::const_iterator pos1, typename sprout::fixed_container_traits::const_iterator pos2, typename sprout::fixed_container_traits::difference_type offset ) { return sprout::sub_copy( sprout::fixed::swap_element(cont, pos1, pos2), offset, offset + sprout::size(cont) ); } } // namespace detail // // swap_element // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> swap_element( Container const& cont, typename sprout::fixed_container_traits::const_iterator pos1, typename sprout::fixed_container_traits::const_iterator pos2 ) { return sprout::outfit::detail::swap_element_impl(cont, pos1, pos2, sprout::fixed_begin_offset(cont)); } } // namespace outfit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_OUTFIT_SWAP_ELEMENT_HPP