Delete removes an option by its key.
(key string)
| 147 | |
| 148 | // Delete removes an option by its key. |
| 149 | func (o *Options) Delete(key string) { |
| 150 | delete(o.m, key) |
| 151 | } |
| 152 | |
| 153 | // DeleteByPrefix removes all options that start with the given prefix. |
| 154 | func (o *Options) DeleteByPrefix(prefix string) { |
no outgoing calls
no test coverage detected