instance method Enumerable#one?

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

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

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

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


require 'set'
Set['ant', 'bear', 'cat'].one? {|word| word.length == 4}  # => true
Set['ant', 'bear', 'cat'].one? {|word| word.length > 4}   # => false
Set['ant', 'bear', 'cat'].one?(/t/)                       # => false
Set[nil, true, 99].one?                                   # => false
Set[nil, true, false].one?                                # => true
Set[nil, true, 99].one?(Integer)                          # => true
Set[].one?                                                # => false

[SEE_ALSO] Array#one?