Specifies that the function Op
, when called with arguments of types Args...
, returns a value convertible to R
.
More...
#include <eve/concept/invocable.hpp>
- Template Parameters
-
Op | The function type |
R | The expected return type |
Args | The arguments types |
template<typename Op, typename R, typename... Args>
{ op(std::forward<Args>(args)...) } -> std::convertible_to<R>;
}
Specifies that the function Op, when called with arguments of types Args..., returns a value converti...
Definition invocable.hpp:113