tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
bubble_sort.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename RandomIt>
constexpr auto bubble_sort (RandomIt first, RandomIt last) -> void
 Sorts the elements in the range [first, last) in non-descending order. The order of equal elements is guaranteed to be preserved.
 
template<typename RandomIt, typename Compare>
constexpr auto bubble_sort (RandomIt first, RandomIt last, Compare comp) -> void
 Sorts the elements in the range [first, last) in non-descending order. The order of equal elements is guaranteed to be preserved.