Different functions based on type of iterator?
Let's say I had a function template <typename Iterator> void function(Iterator first, Iterator last); and I want it to call two different functions based on if Iterator is a random access iterator or just a forward iterator. Essentially, I want two versions of this function: template <typename RandomAccessIterator> void function(RandomAccessIterator first, RandomAccessIterator last); template <typename ForwardIterator> void function(ForwardIterator first, ForwardIterator last); I want a function call to function(a, b) to translate to the first one if a and b are random access iterators, and the second one if they are not. I'm thinking of somehow combining enable_if and concept checking, I'm just not sure how... -- View this message in context: http://www.nabble.com/Different-functions-based-on-type-of-iterator--tf43455... Sent from the Boost - Users mailing list archive at Nabble.com.
participants (1)
-
HighCommander4