From: James Edward Gray II Date: 2006-08-16T00:36:04+09:00 Subject: Re: Hash#each On Aug 15, 2006, at 10:30 AM, phrogz@gmail.com wrote: > Is this whole facet just to avoid typing two extra characters in the > case where you don't care about the keys? Using standard Ruby 1.8.4 > without facets: > > foo = { :name=>"Gavin", :age=>33 } > foo.each{ |_,v| p v } > #=> "Gavin" > #=> 33 And why the heck wouldn't we just use each_value() there?! ;) James Edward Gray II