| 237 | |
| 238 | template <class Collection> |
| 239 | bool InsertIfNotPresent(Collection *const collection, |
| 240 | const typename Collection::value_type &vt) { |
| 241 | return collection->insert(vt).second; |
| 242 | } |
| 243 | |
| 244 | template <class Collection> |
| 245 | bool InsertIfNotPresent( |
no outgoing calls
no test coverage detected