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

Method get_value

tests/test_virtual_functions.cpp:127–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125 Movable(const Movable &m) : value{m.value} { print_copy_created(this); }
126 Movable(Movable &&m) noexcept : value{m.value} { print_move_created(this); }
127 std::string get_value() const { return std::to_string(value); }
128 ~Movable() { print_destroyed(this); }
129
130private:

Callers 2

print_ncFunction · 0.45
print_movableFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected