instance method Enumerable#none?

none? -> bool[permalink][rdoc][edit]
none? {|obj| ... } -> bool
none?(pattern) -> bool

ブロックを指定しない場合は、 Enumerable オブジェクトのすべての要素が偽であれば真を返します。そうでなければ偽を返します。

ブロックを指定した場合は、Enumerable オブジェクトのすべての要素をブロックで評価した結果が、すべて偽であれば真を返します。そうでなければ偽を返します。

自身に要素が存在しない場合は true を返します。

[PARAM] pattern:
ブロックの代わりに各要素に対して pattern === item を評価します。


require 'set'
Set['ant', 'bear', 'cat'].none? {|word| word.length == 5}  # => true
Set['ant', 'bear', 'cat'].none? {|word| word.length >= 4}  # => false
Set['ant', 'bear', 'cat'].none?(/d/)                       # => true
Set[].none?                                                # => true
Set[nil].none?                                             # => true
Set[nil,false].none?                                       # => true
Set[nil, false, true].none?                                # => false

[SEE_ALSO] Array#none?