Michael Letterle: > I don't know if i'd call it a "red herring" as the performance with > find dropped considerably faster, it's probably a combination. Probably because Enumerable#find uses a block internally when it calls #each, so you get two block dispatches instead of one. - John