Values returns all values associated with the given key. It is case-sensitive.
(key string)
| 4262 | // Values returns all values associated with the given key. |
| 4263 | // It is case-sensitive. |
| 4264 | func (h Header) Values(key string) []string { |
| 4265 | return h[key] |
| 4266 | } |
| 4267 | |
| 4268 | // Del deletes the values associated with a key. |
| 4269 | // It is case-sensitive. |
no outgoing calls