# File lib/active_support/core_ext/enumerable.rb, line 101 def many?(&block) size = block_given? ? select(&block).size : self.size size > 1 end