Glen Holcomb wrote: > On Mon, Jul 14, 2008 at 3:22 PM, Nate Leavitt <nateleavitt / gmail.com> > wrote: > >> >> @invoices.each do |invoice| >> if invoice[:id] == params[:contact_id] >> bla... bla... >> end >> end >> -- >> Posted via http://www.ruby-forum.com/. >> >> > With the construct you have there it would be faster to just store the > names > in an array at the index corresponding to :id. Although if this is > coming > out of Rails that probably isn't a viable option. If you are stuck with > that construct then what you have should work fine. There are probably > faster/more efficient ways though. > > -- > "Hey brother Christian with your high and mighty errand, Your actions > speak > so loud, I can't hear a word you're saying." > > -Greg Graffin (Bad Religion) Thanks for the reply. Yes, I am working in rails :) It just seems kinda tedious to keep iterating over all these collections. Just wondering if there is a more efficient way. -- Posted via http://www.ruby-forum.com/.