| 127 | } |
| 128 | |
| 129 | inline const char * |
| 130 | HdrCsvIter::get_first(const MIMEField *m, int *len, bool follow_dups) |
| 131 | { |
| 132 | auto tv = this->get_first(m, follow_dups); |
| 133 | *len = static_cast<int>(tv.size()); |
| 134 | return tv.data(); |
| 135 | } |
| 136 | |
| 137 | inline swoc::TextView |
| 138 | HdrCsvIter::get_first(const MIMEField *m, bool follow_dups) |
no test coverage detected