Sha256: e344b9ced97f0a61dd08a23322a207679e20bb00f26356cfccf281a63651a02f

Contents?: true

Size: 536 Bytes

Versions: 26

Compression:

Stored size: 536 Bytes

Contents

class Hash

  # Swap the values of a pair of keys in place.
  #
  #   {:a=>1,:b=>2}.swap!  #=> {:a=>2,:b=>1}
  #
  def swap!( key1, key2 )
    tmp = self[key1]
    self[key1] = self[key2]
    self[key2] = tmp
    self
  end

end


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

  require 'test/unit'

  class TCHash < Test::Unit::TestCase

    def test_swap!
      h = { :a=>1, :b=>2 }
      assert_equal( { :a=>2, :b=>1 }, h.swap!(:a, :b) )
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

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