# File lib/facets/core/hash/swap.rb, line 7 def swap!( key1, key2 ) tmp = self[key1] self[key1] = self[key2] self[key2] = tmp self end