xieite::distr_args()

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

Uniformly distributes arguments across multiple calls to a functor, possibly recursively.


Declaration

template<std::size_t arity, std::size_t prev = 0>
constexpr decltype(auto) distr_args(auto&& fn, auto&&... args) noexcept(false);
arity dictates how many args are to be passed to fn at a time, and prev dictates how many of those arguments should be recursive calls to fn (if the remaining number of args allows it).
Assumes that args are evenly distributable across multiple (possibly recursive) calls to fn. Does not specify noexcept.


Examples

#0
int main() {
	xieite::distr_args<2>(XIEITE_LIFT(xieite::dump), 1, 2, 3, 4, 5, 6);
}
Output:
1 2
3 4
5 6
[View in Compiler Explorer]

#1
int main() {
	auto fn = [](int a, int b) {
		std::println("{} + {}", a, b);
		return a + b;
	};

	int sum = xieite::distr_args<2, 1>(fn, 1, 2, 3, 4, 5);

	std::println("sum: {}", sum);
}
Output:
1 + 2
3 + 3
6 + 4
10 + 5
sum: 15
[View in Compiler Explorer]