| 88 | |
| 89 | template <typename T> |
| 90 | py::list convertInputPy(T && t) { |
| 91 | pybind11::list list; |
| 92 | RANGES_FOR(auto && a, std::move(t)) { |
| 93 | list.append(std::forward<decltype(a)>(a)); |
| 94 | } |
| 95 | return list; |
| 96 | } |
| 97 | |
| 98 | template <typename T> |
| 99 | Iterator<decltype(BlockSciTypeConverter{}(std::declval<ranges::range_value_type_t<T>>()))> |