(s string)
| 21 | } |
| 22 | |
| 23 | func (w stringWriter) WriteString(s string) (n int, err error) { |
| 24 | return w.w.Write([]byte(s)) |
| 25 | } |
| 26 | |
| 27 | // A headerSorter implements sort.Interface by sorting a []keyValues |
| 28 | // by key. It's used as a pointer, so it can fit in a sort.Interface |
no test coverage detected