xieite::type_list<Ts...>::replace<>

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

Replaces a subrange of a xieite::type_list {} between two indices with other types. The end index is exclusive.


Declaration

template<std::size_t start, std::size_t end, typename... Us>
using replace = /* xieite::type_list<???> */;


Example

int main() {
	using List = xieite::type_list<int, char, float, double>;

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