Checks if this set contains a specific value. Value to search for.
| 42 | /// Value to search for. |
| 43 | /// </param> |
| 44 | bool contains(T const &value) const |
| 45 | { |
| 46 | return this->count(value) != 0; |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | } |
no outgoing calls
no test coverage detected