| 2073 | |
| 2074 | template <typename PM, must_be_member_function_pointer<PM> = 0> |
| 2075 | static cpp_function write(PM pm, const handle &hdl) { |
| 2076 | return cpp_function([pm](T &c, const D &value) { c.*pm = value; }, is_method(hdl)); |
| 2077 | } |
| 2078 | }; |
| 2079 | |
| 2080 | PYBIND11_NAMESPACE_END(detail) |
no test coverage detected