| 492 | py::ssize_t m_n; |
| 493 | explicit OneDBufferLRef(py::ssize_t n) : m_data(new float[(size_t) n]()), m_n(n) {} |
| 494 | ~OneDBufferLRef() { delete[] m_data; } |
| 495 | // Exercises def_buffer(Return (Class::*)(Args...) &) |
| 496 | py::buffer_info get_buffer() & { |
| 497 | return py::buffer_info(m_data, |
nothing calls this directly
no outgoing calls
no test coverage detected