Remove parameter(s) with the given key from the command line Returns `true` if parameter(s) were removed.
(&mut self, key: &ParameterKey)
| 192 | /// |
| 193 | /// Returns `true` if parameter(s) were removed. |
| 194 | pub fn remove(&mut self, key: &ParameterKey) -> bool { |
| 195 | self.0.remove(&key.0) |
| 196 | } |
| 197 | |
| 198 | /// Remove all parameters that exactly match the given parameter |
| 199 | /// from the command line |
no outgoing calls