« Earlier 1 items total Later »

On this page: 

Stable sort

c.f. ruby-talk 133930

class Array
  def stable_sort
    n = 0
    sort_by {|x| n+= 1; [x, n]}
  end
end

« Earlier 1 items total Later »