| 506 | } |
| 507 | |
| 508 | std::pair<Elem, bool> insert(const Elem& val) { |
| 509 | auto p = _data.insert(val); |
| 510 | return {*p.first, p.second}; |
| 511 | } |
| 512 | |
| 513 | bool has(const Elem& val) const { |
| 514 | return _data.find(val) != _data.end(); |
no outgoing calls
no test coverage detected