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

Function print_move_assigned

tests/constructor_stats.h:299–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298template <class T, typename... Values>
299void print_move_assigned(T *inst, Values &&...values) {
300 print_constr_details(inst, "assigned via move assignment", values...);
301 track_move_assigned(inst, values...);
302}
303template <class T, typename... Values>
304void print_default_created(T *inst, Values &&...values) {
305 print_constr_details(inst, "created via default constructor", values...);

Callers 10

Vector2Class · 0.85
SequenceClass · 0.85
operator=Method · 0.85
MatrixClass · 0.85
MoveOnlyIntClass · 0.85
MoveOrCopyIntClass · 0.85
DestructionTesterClass · 0.85
TestFactory2Class · 0.85
TestFactory3Class · 0.85
refClass · 0.85

Calls 2

print_constr_detailsFunction · 0.85
track_move_assignedFunction · 0.85

Tested by 1

operator=Method · 0.68