#ifndef INSERTIONSORT3_H_
#define INSERTIONSORT3_H_

#include <algorithm>

namespace Meep {
	
template <typename RandomAccessIterator>
void insertion_sort3(RandomAccessIterator first, RandomAccessIterator last) {
/** Sort data in the specified range using insertion sort
    first: An interator that references
           the first element in the sequence to be sorted
    last: An interator iterator that references
           one past the end of the sequence
*/  

 
}
} // End namespace Meep

#endif
