isEmpty
trait Collection[A] { def isEmpty: Boolean }
isEmpty checks whether this collection has no elements and returns false otherwise.
false
It only returns true on empty collections.
true