libbmb
Modern implementation of STL
Loading...
Searching...
No Matches
bmb::NothrowConstructibleFrom Concept Reference

NothrowConstructibleFrom. More...

#include <concepts.h>

Concept definition

template<typename T, typename... Args>
concept bmb::NothrowConstructibleFrom = requires {
{ T(declval<Args>()...) } noexcept;
}
NothrowConstructibleFrom.
Definition concepts.h:35
constexpr T && forward(remove_ref_t< T > &value) noexcept
Forward a lvalue.
Definition move.h:33

Detailed Description

NothrowConstructibleFrom.