
28 May
2009
28 May
'09
3:15 p.m.
On 28 May 2009, at 15:26, Steven Ross wrote:
Is there a boost::iter_swap? It would be useful to enable use of a more specialized iter_swap for sorting. This would apply both to my hybrid algorithms and spreadsort.
One thing to watch out for (you might know this) is that standard libraries are not required to use iter_swap for iterators, and in general don't (they often use swap(*a,*b)). Chris