write a delimited string to the output
| 13 | |
| 14 | // write a delimited string to the output |
| 15 | auto write(std::string_view str, std::output_iterator<char> auto out) |
| 16 | { |
| 17 | out = std::copy(str.begin(), str.end(), out); |
| 18 | *(out++) = DELIMITER; |
| 19 | return out; |
| 20 | } |
| 21 | |
| 22 | // return the encoded size of a label |
| 23 | inline std::size_t label_size(const label_pair& l) |
no test coverage detected