| 74 | |
| 75 | template<typename OutIter> |
| 76 | constexpr OutIter write_cp_utf8(char32_t cp, OutIter out) |
| 77 | { |
| 78 | return detail::read_into_buf(cp, out); |
| 79 | } |
| 80 | |
| 81 | template<typename OutIter> |
| 82 | constexpr OutIter write_cp_utf16(char32_t cp, OutIter out) |
no test coverage detected