| 2528 | /// Binds an existing constructor taking arguments Args... |
| 2529 | template <typename... Args> |
| 2530 | detail::initimpl::constructor<Args...> init() { |
| 2531 | return {}; |
| 2532 | } |
| 2533 | /// Like `init<Args...>()`, but the instance is always constructed through the alias class (even |
| 2534 | /// when not inheriting on the Python side). |
| 2535 | template <typename... Args> |
no test coverage detected