# File lib/facet/enumerable/none?.rb, line 21
  def none?  # :yield: e
    if block_given?
      not self.any? { |e| yield e }
    else
      not self.any?
    end
  end