xieite::type_list<Ts...>::replace_range<>

Defined in header <xieite/meta/type_list.hpp>

Replaces a subrange of a xieite::type_list {} between two indices with the elements of another. The end index is exclusive.


Declaration

template<std::size_t start, std::size_t end, typename R>
using replace_range = /* xieite::type_list<???> */;


Example

int main() {
	using Foo = xieite::type_list<int, char, float, double>;
	using Bar = xieite::type_list<short, long>;

	xieite::dump(xieite::name<Foo::replace_range<1, 3, Bar>>());
}
Possible output:
xieite::type_list<int, short, long, double>
[View in Compiler Explorer]