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