| 346 | |
| 347 | template <typename T, typename ToString> |
| 348 | cpp11::writable::strings to_r_strings(const std::vector<std::shared_ptr<T>>& x, |
| 349 | ToString&& to_string) { |
| 350 | return to_r_vector<cpp11::writable::strings>(x, std::forward<ToString>(to_string)); |
| 351 | } |
| 352 | |
| 353 | template <typename T, typename ToListElement> |
| 354 | cpp11::writable::list to_r_list(const std::vector<std::shared_ptr<T>>& x, |