xieite::rot_swap()

Defined in header <xieite/fn/rot_swap.hpp>

Swaps the values of multiple references by rotating their values to the left.
When rotating by multiple spaces, internally uses the least possible number of temporary copies.


Declaration

template<std::size_t n = 1, typename... Args>
constexpr std::tuple<Args&...> rot_swap(Args&... args)
noexcept((... && (xieite::has_noex_mv_ctor<Args> && std::has_noex_mv_assign<Args>)));


Example

int main() {
	int a = 1;
	int b = 2;
	int c = 3;
	xieite::dump(a, b, c);

	xieite::rot_swap(a, b, c);

	xieite::dump(a, b, c);
}
Output:
1 2 3
2 3 1
[View in Compiler Explorer]