| 179 | |
| 180 | template <typename OutputIterator, typename UnaryOperator> |
| 181 | void apply( OutputIterator target, UnaryOperator op){ |
| 182 | std::transform( begin(), end(), target, op ) ; |
| 183 | } |
| 184 | |
| 185 | template <typename UnaryOperator> |
| 186 | void apply( UnaryOperator op){ |
nothing calls this directly
no outgoing calls
no test coverage detected