是否有与 Perl 的 Data::Rmap 等效的 Ruby?

发布于 2024-07-11 20:38:44 字数 213 浏览 6 评论 0原文

Perl 的 Data::Rmap 允许您在数据结构列表上递归地计算 BLOCK (本地设置 $_ 到每个元素)并返回由此类评估结果组成的列表。 $_ 可用于修改元素。

这对于迭代诸如嵌套哈希或哈希数组的层次结构之类的东西非常有用。

Perl's Data::Rmap allows you to recursively evaluate a BLOCK over a list of data structures (locally setting $_ to each element) and return the list composed of the results of such evaluations. $_ can be used to modify the elements.

This is useful for iterating over things like nested hashes, or hierarchies of arrays of hashes and the like.

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

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

发布评论

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

评论(2

风向决定发型 2024-07-18 20:38:44

我认为 Ruby 的 Enumerable 可以满足您想要的一切。 “...并返回由此类评估结果组成的列表”表示您想要Enumerable#map。 我的第一次尝试是这样的:

[ {...}, {...}, {...}, ... ].map do |hash|
  hash.something
  do_other_stuff_with(hash)
  hash                  # important to have as last line b/c of how #map works
end

Ruby's Enumerable does everything you want, I think. "... and return the list composed of the results of such evaluations" indicates you want Enumerable#map. My first go would be something like this:

[ {...}, {...}, {...}, ... ].map do |hash|
  hash.something
  do_other_stuff_with(hash)
  hash                  # important to have as last line b/c of how #map works
end
夜未央樱花落 2024-07-18 20:38:44

如果没有真正研究细节,我不确定您是否需要 Ruby 中的模块。 迭代器和块可以做你想做的事。

Without really looking into details, I'm not sure you need a module for that in Ruby. Iterators and blocks are there to do what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文