Remove deletes the specified parameter from the map.
(name string)
| 192 | |
| 193 | // Remove deletes the specified parameter from the map. |
| 194 | func (pars Params) Remove(name string) { |
| 195 | delete(pars, name) |
| 196 | } |
| 197 | |
| 198 | // Get returns the event parameter with specified name. |
| 199 | func (pars Params) Get(name string) (*Param, error) { |