std::type_index::name (3) - Linux Manuals

std::type_index::name: std::type_index::name

NAME

std::type_index::name - std::type_index::name

Synopsis


const char* name() const; (since C++11)
                                    (until C++14)
const char* name() const noexcept; (since C++14)


Returns the name of the associated std::type_info object. Equivalent to calling std::type_info::name() directly.

Parameters


(none)

Return value


The name of the associated type_info object.

Example


 This section is incomplete
 Reason: no example