| 60 | // Fills the specified container with 'value' (using std::fill). |
| 61 | template <class Container, class T> |
| 62 | void Fill(Container& cont, const T& value) |
| 63 | { |
| 64 | std::fill(std::begin(cont), std::end(cont), value); |
| 65 | } |
| 66 | |
| 67 | // Returns true if the specified container contains the entry specified by 'value' (using std::find). |
| 68 | template <class Container, class T> |
no test coverage detected