module Hamster::List

def sort(&comparator)

def sort(&comparator)
  Stream.new { Sorter.new(self).sort(&comparator) }
end