| 105 | } |
| 106 | |
| 107 | bool Remove(const String& name) { |
| 108 | auto it = table_.find(name); |
| 109 | if (it == table_.end()) return false; |
| 110 | table_.erase(name); |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | const Entry* Get(const String& name) { |
| 115 | auto it = table_.find(name); |
no test coverage detected