mimic++ v9.2.1
Loading...
Searching...
No Matches
mimicpp::util::nothrow_explicitly_convertible_to Concept Reference

Determines, whether From can be explicitly converted to To, without throwing. More...

#include <Concepts.hpp>

Concept definition

template<typename From, typename To>
&& requires {
{ static_cast<To>(std::declval<From>()) } noexcept;
}
Determines, whether From can be explicitly converted to To.
Definition Concepts.hpp:34
Determines, whether From can be explicitly converted to To, without throwing.
Definition Concepts.hpp:43

Detailed Description

Determines, whether From can be explicitly converted to To, without throwing.