lib/core/facets/hash/inverse.rb in facets-2.4.5 vs lib/core/facets/hash/inverse.rb in facets-2.5.0
- old
+ new
@@ -7,10 +7,10 @@
# h.invert #=> {2=>"d", 3=>"f", 9=>"g"}
# h.inverse #=> {2=>"d", 3=>["f", "c", "b", "a"], 9=>["g", "e"]}
# h.inverse.inverse #=> {"a"=>3, "b"=>3, "c"=>3, "d"=>2, "e"=>9, "f"=>3, "g"=>9}
# h.inverse.inverse == h #=> true
#
- # CREDIT: Tilo Sloboda
+ # CREDIT: Tilo Sloboda
def inverse
i = Hash.new
self.each_pair{ |k,v|
if (Array === v)