MCPcopy Create free account
hub / github.com/pybind/pybind11 / get_override

Function get_override

include/pybind11/pybind11.h:3840–3843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3838 \endrst */
3839template <class T>
3840function get_override(const T *this_ptr, const char *name) {
3841 auto *tinfo = detail::get_type_info(typeid(T));
3842 return tinfo ? detail::get_type_override(this_ptr, tinfo, name) : function();
3843}
3844
3845#define PYBIND11_OVERRIDE_IMPL(ret_type, cname, name, ...) \
3846 do { \

Callers 1

get_overloadFunction · 0.85

Calls 2

get_type_overrideFunction · 0.85
functionClass · 0.85

Tested by

no test coverage detected