| 1895 | FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>() && |
| 1896 | has_append<OutputIt, InputIt>())> |
| 1897 | FMT_CONSTEXPR auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt { |
| 1898 | get_container(out).append(begin, end); |
| 1899 | return out; |
| 1900 | } |
| 1901 | |
| 1902 | template <typename T, typename InputIt, typename OutputIt, |
| 1903 | FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>() && |
nothing calls this directly
no test coverage detected