select(select = nil)
public

No documentation available.

# File activerecord/lib/active_record/associations/association_collection.rb, line 29
      def select(select = nil)
        if block_given?
          load_target
          @target.select.each { |e| yield e }
        else
          scoped.select(select)
        end
      end