Files
RubyMotion/test/Benchmark/app/benchmark/object/instance_variable_get.rb
2014-01-27 12:48:50 +09:00

10 lines
173 B
Ruby

def object_instance_variable_get(x)
user = User.new
x.report "instance_variable_get" do
1000000.times do
user.instance_variable_get(:@name)
end
end
end