Sha256: 048b27b4183de6162183cb83acc7a782f33c77f483f6aa237d04c8daad641f62

Contents?: true

Size: 740 Bytes

Versions: 192

Compression:

Stored size: 740 Bytes

Contents

# frozen_string_literal: true

class Object
  # 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}
  def instance_values
    Hash[instance_variables.map { |name| [name[1..-1], instance_variable_get(name)] }]
  end

  # Returns an array of instance variable names as strings including "@".
  #
  #   class C
  #     def initialize(x, y)
  #       @x, @y = x, y
  #     end
  #   end
  #
  #   C.new(0, 1).instance_variable_names # => ["@y", "@x"]
  def instance_variable_names
    instance_variables.map(&:to_s)
  end
end

Version data entries

192 entries across 178 versions & 24 rubygems

Version Path
activesupport-5.2.7.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.7 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.5 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.2.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.7 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.7 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.6.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.2.2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.6 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.6 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.6.2 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.6.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.5 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.4.5 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.2.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.2 lib/active_support/core_ext/object/instance_variables.rb
ric-0.14.2 vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb
ric-0.14.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/activesupport-6.1.4.4/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.1 lib/active_support/core_ext/object/instance_variables.rb