| 6353 | }; |
| 6354 | |
| 6355 | template <typename T> void swap(T& lhs, T& rhs) |
| 6356 | { |
| 6357 | T temp = lhs; |
| 6358 | lhs = rhs; |
| 6359 | rhs = temp; |
| 6360 | } |
| 6361 | |
| 6362 | template <typename I, typename Pred> I min_element(I begin, I end, const Pred& pred) |
| 6363 | { |
no outgoing calls
no test coverage detected