Sprout/sprout/algorithm/fixed/rotate.hpp
bolero-MURAKAMI 0c00166c5f fix container_traits for array-like classes
fix coding style algorithm/
2012-09-29 17:10:46 +09:00

25 lines
825 B
C++

#ifndef SPROUT_ALGORITHM_FIXED_ROTATE_HPP
#define SPROUT_ALGORITHM_FIXED_ROTATE_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/algorithm/fixed/rotate_copy.hpp>
namespace sprout {
namespace fixed {
//
// rotate
//
template<typename Container>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
rotate(Container const& cont, typename sprout::container_traits<Container>::const_iterator middle) {
return sprout::fixed::rotate_copy(sprout::begin(cont), middle, sprout::end(cont), cont);
}
} // namespace fixed
using sprout::fixed::rotate;
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_ROTATE_HPP