isEmpty

trait Collection[A] {
  def isEmpty: Boolean
}

isEmpty checks whether this collection has no elements and returns false otherwise.

It only returns true on empty collections.