Sha256: 2b9b5806a0c012199010e56dce83d5a91d428cff7f89dc60b296e029060b6b6e

Contents?: true

Size: 447 Bytes

Versions: 26

Compression:

Stored size: 447 Bytes

Contents

class Hash

  def each_with_key( &yld )
    each_pair{ |k,v| yld.call(v,k) }
  end

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_key { |v,k| h2[v] = k }
      assert_equal( {1=>:a, 2=>:b}, h2 )
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

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