isEmpty
trait Collection[A] { def isEmpty: Boolean }
isEmpty comprueba si esta colección no tiene elementos y devuelve false en otro caso.
false
Esta función sólo devuelve true para colecciones vacías.
true