gpt4 book ai didi

ruby - 在 Ruby 中,是否有类似于 `any?` 的方法返回匹配项(而不是 `true` )

转载 作者:数据小太阳 更新时间:2023-10-29 07:41:47 26 4
gpt4 key购买 nike

>> [1, 2, 3, 4, 5].any? {|n| n % 3 == 0}
=> true

如果我想知道哪个项目匹配,而不仅仅是是否一个项目匹配怎么办?我只对短路解决方案感兴趣(那些在找到匹配项后立即停止迭代的解决方案)。

我知道我可以执行以下操作,但由于我是 Ruby 的新手,我很想学习其他选项。

>> match = nil
=> nil
>> [1, 2, 3, 4, 5].each do |n|
.. if n % 3 == 0
.. match = n
.. break
.. end
.. end
=> nil
>> match
=> 3

最佳答案

你在找这个吗:

[1, 2, 3, 4, 5].find {|n| n % 3 == 0} # => 3

来自docs :

Passes each entry in enum to block. Returns the first for which block is not false.

因此这也可以满足您的“短路”要求。 Enumerable#find 的另一个不太常用的别名是 Enumerable#detect,它的工作方式完全相同。

关于ruby - 在 Ruby 中,是否有类似于 `any?` 的方法返回匹配项(而不是 `true` ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7735377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com