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