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

Method MoveOrCopyInt

tests/test_copy_move.cpp:67–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65class MoveOrCopyInt {
66public:
67 MoveOrCopyInt() { print_default_created(this); }
68 explicit MoveOrCopyInt(int v) : value{v} { print_created(this, value); }
69 MoveOrCopyInt(MoveOrCopyInt &&m) noexcept {
70 print_move_created(this, m.value);

Callers

nothing calls this directly

Calls 4

print_default_createdFunction · 0.85
print_createdFunction · 0.85
print_move_createdFunction · 0.85
print_copy_createdFunction · 0.85

Tested by

no test coverage detected