1#ifndef CODEX_ALGO_ROTATE_H
2#define CODEX_ALGO_ROTATE_H
8template<std::permutable I, std::sentinel_for<I> S>
13 std::iter_swap(
b++, i++);
21template<std::permutable I, std::sentinel_for<I> S>
26 std::iter_swap(
b++, i++);
void rotate(I b, I n, S e)
Definition rotate.hpp:22
void rotate_rec(I b, I n, S e)
Definition rotate.hpp:9
Definition reflexpr.cpp:168