instance_values()
Instance Public methods
Returns a hash with string keys that maps instance variable names without â@â to their corresponding values.
class C def initialize(x, y) @x, @y = x, y end end C.new(0, 1).instance_values # => {"x" => 0, "y" => 1}
Please login to continue.