Sha256: bbb137d0db6fe9647f885f28701c5800545360552af99692433505a229bfa9ce
Contents?: true
Size: 244 Bytes
Versions: 17
Compression:
Stored size: 244 Bytes
Contents
class Hash # Can be used like update, or passed # as two-element [key,value] array. # # CREDIT: Trans def <<(other) if other.respond_to?(:to_ary) self.store(*other) else update(other) end self end end
Version data entries
17 entries across 16 versions & 1 rubygems