Collections Ruby

require 'set'
s = Set[1, 2, 3, 4, 5] # => #
s.collect! {|x| x/2 }  # => #