MCPcopy Create free account
hub / github.com/HelenOS/helenos / sort

Function sort

uspace/lib/cpp/include/__bits/algorithm.hpp:691–696  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689
690 template<class RandomAccessIterator>
691 void sort(RandomAccessIterator first, RandomAccessIterator last)
692 {
693 using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
694
695 sort(first, last, less<value_type>{});
696 }
697
698 template<class RandomAccessIterator, class Compare>
699 void sort(RandomAccessIterator first, RandomAccessIterator last,

Callers

nothing calls this directly

Calls 2

make_heapFunction · 0.85
sort_heapFunction · 0.85

Tested by

no test coverage detected