Sha256: ca4ce09080275e271eaf0ee5b42885aba27dbaaa7e80b7b5edd8dbf4425ceb8c

Contents?: true

Size: 614 Bytes

Versions: 22

Compression:

Stored size: 614 Bytes

Contents

require 'facet/enumerable/each_with_counter'
require 'facet/hash/each_with_key'

class Hash

  # More appropriate naming and polymorphism with Array.
  # Use #each_with_counter for old functionality.
  alias_method :each_with_index, :each_with_key

end


#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCHash < Test::Unit::TestCase

    def test_each_with_key
      h1 = { :a=>1, :b=>2 }
      h2 = {}
      h1.each_with_index { |v,k| h2[v] = k }
      assert_equal( {1=>:a, 2=>:b}, h2 )
    end

  end

=end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
facets-1.0.0 lib/facet/hash/each_with_index.rb
facets-1.0.3 packages/core/lib/facet/hash/each_with_index.rb
facets-1.1.0 lib/facet/hash/each_with_index.rb
facets-1.2.0 lib/facets/core/hash/each_with_index.rb
facets-1.2.1 lib/facets/core/hash/each_with_index.rb
facets-1.3.0 lib/facets/core/hash/each_with_index.rb
facets-1.3.1 lib/facets/core/hash/each_with_index.rb
facets-1.3.2 lib/facets/core/hash/each_with_index.rb
facets-1.3.3 lib/facets/core/hash/each_with_index.rb
facets-1.4.0 lib/facets/core/hash/each_with_index.rb
facets-1.4.1 lib/facets/core/hash/each_with_index.rb
facets-1.4.2 lib/facets/core/hash/each_with_index.rb
facets-1.4.3 lib/facets/core/hash/each_with_index.rb
facets-1.4.4 lib/facets/core/hash/each_with_index.rb
facets-1.4.5 lib/facets/core/hash/each_with_index.rb
facets-1.7.0 lib/facets/core/hash/each_with_index.rb
facets-1.7.30 lib/facets/core/hash/each_with_index.rb
facets-1.7.38 lib/facets/core/hash/each_with_index.rb
facets-1.7.46 lib/facets/core/hash/each_with_index.rb
facets-1.8.0 lib/facets/core/hash/each_with_index.rb