MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / stableSort

Function stableSort

source/core/StarAlgorithm.hpp:183–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181
182template <typename Container, typename Compare>
183void stableSort(Container& c, Compare comp) {
184 std::stable_sort(c.begin(), c.end(), comp);
185}
186
187template <typename Container>
188void sort(Container& c) {

Callers 3

renderMethod · 0.85
ParallaxMethod · 0.85
sortByComputedValueFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected