39 #include <SPL/config.hpp> 55 template<
class InputIterator,
class Size,
class OutputIterator>
56 OutputIterator
copy_n(InputIterator first, Size count, OutputIterator result)
60 for (Size i = 1; i < count; ++i) {
Definition: Arcball.hpp:48
OutputIterator copy_n(InputIterator first, Size count, OutputIterator result)
This template function is equivalent to std::copy_n in the new C++ 0x standard.
Definition: misc.hpp:56