| 96 | } |
| 97 | |
| 98 | void config_command::insert(const std::string& _key, const std::string&& _value) { |
| 99 | configs_.insert_or_assign(_key, std::move(_value)); |
| 100 | } |
| 101 | |
| 102 | bool config_command::contains(const std::string& _key) const { |
| 103 | return configs_.contains(_key); |
no outgoing calls