| 550 | |
| 551 | template <typename T, typename V, typename OutputIt> |
| 552 | FMT_CONSTEXPR auto copy(basic_string_view<V> s, OutputIt out) -> OutputIt { |
| 553 | return copy<T>(s.begin(), s.end(), out); |
| 554 | } |
| 555 | |
| 556 | template <typename OutChar, typename InputIt, typename OutputIt> |
| 557 | FMT_CONSTEXPR FMT_NOINLINE auto copy_noinline(InputIt begin, InputIt end, |