Fetch an instance from the pool, constructing via the factory if needed.
| 55 | |
| 56 | // Fetch an instance from the pool, constructing via the factory if needed. |
| 57 | Ptr acquire() { return Ptr(acquire_raw().release(), Releaser{this}); } |
| 58 | |
| 59 | template <typename Handler> |
| 60 | auto borrow(Handler &&handler) |