| 453 | |
| 454 | template< typename InputIterator, typename OutputIterator > |
| 455 | void sqrt(InputIterator begin, InputIterator end, OutputIterator out) { |
| 456 | std::transform(begin, end, out, helpers::sqrt()); |
| 457 | } |
| 458 | |
| 459 | } // namespace algorithm |
| 460 | } // namespace Rcpp |
no outgoing calls
no test coverage detected