From: Dan Doel Date: 2004-01-28T05:15:23+09:00 Subject: Re: newbee question about "missing" hash methods +, += and << benny wrote: >nevertheless my proposal wasn't {"a" => "b"} << "c => d" (analog to ["a"] << "b" ) but >{"a" => "b"} << {"c" => "d"} > > You can do this yourself: class Hash alias_method :<<, :update end - Dan