| 44 | |
| 45 | template<typename InIter, typename Func> |
| 46 | Func for_each(InIter first, InIter last, Func op) |
| 47 | { |
| 48 | while (first != last) { |
| 49 | op(*first); |
| 50 | ++first; |
| 51 | } |
| 52 | return op; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | template<typename T> |
no outgoing calls
no test coverage detected