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

Function print_constr_details

tests/constructor_stats.h:271–278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269
270template <class T, typename... Output>
271void print_constr_details(T *inst, const std::string &action, Output &&...output) {
272 py::print("###",
273 py::type_id<T>(),
274 "@",
275 format_ptrs(inst),
276 action,
277 format_ptrs(std::forward<Output>(output))...);
278}
279
280// Verbose versions of the above:
281template <class T, typename... Values>

Callers 8

print_copy_createdFunction · 0.85
print_move_createdFunction · 0.85
print_copy_assignedFunction · 0.85
print_move_assignedFunction · 0.85
print_default_createdFunction · 0.85
print_createdFunction · 0.85
print_destroyedFunction · 0.85
print_valuesFunction · 0.85

Calls 2

printFunction · 0.85
format_ptrsFunction · 0.85

Tested by

no test coverage detected