ddash.algorithm.sort

sorts stuff

Members

Functions

maybeSort
auto ref maybeSort(auto ref Range range)

Might or might not sort a range, depending on some static properties of a range.

maybeSortBy
auto ref maybeSortBy(auto ref Range range)

Maybe sorts a range using maybeSort by a publicly visible member variable or property of ElemntType!Range

sortBy
auto sortBy(Range range)

Sorts a range using the standard library sort by a publicly visible member variable or property of ElemntType!Range

Meta