| 30 | public: |
| 31 | template <typename SourceIterator, typename DestIterator> |
| 32 | static void copy_array (SourceIterator first, SourceIterator last, |
| 33 | DestIterator result) { |
| 34 | while (first != last) { |
| 35 | copy_array(*first++,*result++); |
| 36 | } |
| 37 | } |
| 38 | private: |
| 39 | // Array2 has to be passed by VALUE here because subarray |
| 40 | // pseudo-references are temporaries created by iterator::operator*() |
nothing calls this directly
no test coverage detected