xieite::has_noex_mv_ctor<>

Defined in header <xieite/trait/has_noex_mv_ctor.hpp>

A wrapper around std::is_nothrow_move_constructible {} to specify that a type is move-constructible without throwing.


Definition

template<typename T>
concept has_noex_mv_ctor = std::is_nothrow_move_constructible_v<T>;


Example

struct A {
	A(A&&) noexcept {}
};

struct B {
	B(B&&) {}
};

int main() {
	xieite::dump(xieite::has_noex_mv_ctor<A>);
	xieite::dump(xieite::has_noex_mv_ctor<B>);
}
Output:
true
false
[View in Compiler Explorer]