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-7.0.4.2 lib/active_support/core_ext/object/instance_variables.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.4.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.7.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.6.1 lib/active_support/core_ext/object/instance_variables.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.4 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.7 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.6 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.3.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.6.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.5.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.8.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-5.2.8 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.5 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.6 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.3 lib/active_support/core_ext/object/instance_variables.rb
activesupport-7.0.2.4 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.1.5.1 lib/active_support/core_ext/object/instance_variables.rb
activesupport-6.0.4.8 lib/active_support/core_ext/object/instance_variables.rb