select(select = nil)
public

No documentation available.

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