Skip to content

Instantly share code, notes, and snippets.

@vralex
Created October 15, 2014 05:55
Show Gist options
  • Save vralex/9ba1477f24158b1c94b6 to your computer and use it in GitHub Desktop.
Save vralex/9ba1477f24158b1c94b6 to your computer and use it in GitHub Desktop.
#include <iterator>
template <typename T>
void rotate(T begin, T end, int k)
{
typedef typename std::iterator_traits<T>::value_type TValue;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment