/* */ template OutputIterator ncopy(InputIterator first, InputIterator last, int32_t count, OutputIterator destination) { OutputIterator x = destination; for(int32_t i = 0; i < count; ++i) { x = copy(first, last, destination); } return x; }