Sha256: 8f5c5ebfd22ba65a52bce2b86c899cabe116471ead5f59cdd222cfd380b1cfab

Contents?: true

Size: 433 Bytes

Versions: 26

Compression:

Stored size: 433 Bytes

Contents

class Hash

  def update_keys
    each{ |k,v| delete(k) ; store( yield(k), v ) }
  end

end


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

  require 'test/unit'

  class TCHash < Test::Unit::TestCase

    def test_001
      h = { 'A' => 1, 'B' => 2 }
      h.update_keys{ |k| k.downcase }
      assert_equal( { 'a' => 1, 'b' => 2 }, h)
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

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