| 448 | |
| 449 | template< typename InputIterator, typename OutputIterator > |
| 450 | void exp(InputIterator begin, InputIterator end, OutputIterator out) { |
| 451 | std::transform(begin, end, out, helpers::exp()); |
| 452 | } |
| 453 | |
| 454 | template< typename InputIterator, typename OutputIterator > |
| 455 | void sqrt(InputIterator begin, InputIterator end, OutputIterator out) { |
no outgoing calls
no test coverage detected