| 6089 | |
| 6090 | template<typename T> |
| 6091 | void swap(T& lhs, T& rhs) |
| 6092 | { |
| 6093 | T temp = lhs; |
| 6094 | lhs = rhs; |
| 6095 | rhs = temp; |
| 6096 | } |
| 6097 | |
| 6098 | template<typename I, typename Pred> |
| 6099 | I min_element(I begin, I end, const Pred& pred) |
no outgoing calls
no test coverage detected