(v []string)
| 234 | } |
| 235 | |
| 236 | func copyOf(v []string) []string { |
| 237 | vals := make([]string, len(v)) |
| 238 | copy(vals, v) |
| 239 | return vals |
| 240 | } |
| 241 | |
| 242 | // fromOutgoingContextRaw returns the un-merged, intermediary contents of rawMD. |
| 243 | // |
no outgoing calls
no test coverage detected