| 369 | |
| 370 | template <typename Char> |
| 371 | constexpr text<Char> make_text(basic_string_view<Char> s, size_t pos, |
| 372 | size_t size) { |
| 373 | return {{&s[pos], size}}; |
| 374 | } |
| 375 | |
| 376 | template <typename Char, typename OutputIt, typename T, |
| 377 | std::enable_if_t<std::is_integral_v<T>, int> = 0> |
no outgoing calls
no test coverage detected