Ruby - 测试每个数组元素,得到一个结果

发布于 2024-09-26 20:37:59 字数 326 浏览 1 评论 0原文

我想要一个单行返回真/假,测试数组中的每个元素是否是整数。因此,如果数组中的任何元素不是 Integer,则应返回 false,否则返回 true。这是我的尝试:

>> ([2,1,4].map {|x| (x.is_a? Integer)}).reduce {|x, result| x and result}
=> true
>> ([2,"a",4].map {|x| (x.is_a? Integer)}).reduce {|x, result| x and result}
=> false

还有其他想法可以进一步提炼它吗?

I want a one-liner to return true/false, that tests each element in an array for whether it's an Integer or not. So if any element in the array is not an Integer, it should return false, else true. Here's my try:

>> ([2,1,4].map {|x| (x.is_a? Integer)}).reduce {|x, result| x and result}
=> true
>> ([2,"a",4].map {|x| (x.is_a? Integer)}).reduce {|x, result| x and result}
=> false

Any other ideas to distill it down further?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

但可醉心 2024-10-03 20:37:59
array.all?{ |x| x.is_a? Integer }
array.all?{ |x| x.is_a? Integer }
白首有我共你 2024-10-03 20:37:59
ary.all?(&Integer.method(:===))
ary.all?(&Integer.method(:===))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文