nonEmpty

trait Collection[A] {
  def nonEmpty: Boolean
}

nonEmpty は、このコレクションに1つでも要素が含まれていれば true を返します。

空のコレクションでは、この関数は false を返します。