| 766 | |
| 767 | template <typename T> |
| 768 | static handle cast(T &&src, return_value_policy policy, handle parent) { |
| 769 | return cast_impl(std::forward<T>(src), policy, parent, indices{}); |
| 770 | } |
| 771 | |
| 772 | // copied from the PYBIND11_TYPE_CASTER macro |
| 773 | template <typename T> |