require 'nano/integer/times_collect.rb' class Integer alias_method :times_map, :times_collect end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCInteger < Test::Unit::TestCase def test_times_map a = 4 b = a.times_map{ |i| i*2 } assert_equal( [0,2,4,6], b ) end end =end