nonEmpty
trait Collection[A] { def nonEmpty: Boolean }
nonEmpty returns true when this collection has at least one element.
true
On empty collections this function return false.
false