template <class VectorClass> inline std::vector<uint> SortIndices(VectorClass const& v);

This is a template function. The template argument VectorClass must be an index-able class, such as std::vector<T>, where the type of the elements, T, must have operator <.

Arguments

v

a const& to a VectorClass object.

Value

an std::vector<uint>.

See also