| 443 | |
| 444 | template< typename InputIterator, typename OutputIterator > |
| 445 | void log(InputIterator begin, InputIterator end, OutputIterator out) { |
| 446 | std::transform(begin, end, out, helpers::log()); |
| 447 | } |
| 448 | |
| 449 | template< typename InputIterator, typename OutputIterator > |
| 450 | void exp(InputIterator begin, InputIterator end, OutputIterator out) { |
no outgoing calls
no test coverage detected