std::function::target_type
From cppreference.com
< cpp | utility | functional | function
const std::type_info& target_type() const; |
(since C++11) | |
Returns the type of the stored function.
Contents |
[edit] Parameters
(none)
[edit] Return value
typeid(T) if the stored function has type T
, otherwise typeid(void)
[edit] Exceptions
noexcept specification:
noexcept
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
obtains a pointer to the stored target of a std::function (public member function) |