isEmpty
trait Collection[A] { def isEmpty: Boolean }
isEmpty は、このコレクションが一つの要素も含まないかを調べ、そうでなければ false を返します。
false
空のコレクションの場合のみ true を返します。
true