| 2896 | /// Binds an existing constructor taking arguments Args... |
| 2897 | template <typename... Args> |
| 2898 | detail::initimpl::constructor<Args...> init() { |
| 2899 | return {}; |
| 2900 | } |
| 2901 | /// Like `init<Args...>()`, but the instance is always constructed through the alias class (even |
| 2902 | /// when not inheriting on the Python side). |
| 2903 | template <typename... Args> |