Flowdock
method

instance_values

Importance_1
Ruby on Rails latest stable (v3.2.13) - 0 notes - Class: Object
instance_values() public

Returns a hash that maps instance variable names without “@” to their corresponding values. Keys are strings both in Ruby 1.8 and 1.9.

class C
  def initialize(x, y)
    @x, @y = x, y
  end
end

C.new(0, 1).instance_values # => {"x" => 0, "y" => 1}
Show source
Register or log in to add new notes.