#-- # :credit: Sean O'Halpin #++ module Enumerable def project(&block) self.map{|x| x.instance_eval(&block) } end end