Exemplo n.º 1
0
 public static void StableSort <T>(this T[] values)
     where T : IComparable <T>
 {
     Vector.Sort(values, true);
 }
Exemplo n.º 2
0
 public static void StableSort <T>(this T[] values, out int[] order)
     where T : IComparable <T>
 {
     Vector.Sort(values, out order, true);
 }
Exemplo n.º 3
0
 public static void StableSort <T>(this T[] values, Comparison <T> comparison)
 {
     Vector.Sort(values, comparison, true);
 }