Ruby 中管道和括号的组合规则

发布于 2025-01-18 02:45:04 字数 138 浏览 1 评论 0原文

在 ruby​​ 中,您可以执行以下操作:

[[:a, [:z, 1]]].map{|one, (two, three)| three}
=> 1

将管道部分与括号组合的限制和一般规则是什么?

In ruby you can do things like:

[[:a, [:z, 1]]].map{|one, (two, three)| three}
=> 1

What are limits and general rules in combining pipe sections with parentheses?

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

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

发布评论

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

评论(1

奈何桥上唱咆哮 2025-01-25 02:45:04

正如其他人提到的,这称为“数组解构”或数组分解。请参阅: https://ruby- doc.org/core-3.1.2/doc/syntax/assignment_rdoc.html#label-Array+Decomposition

As others mentioned, this is called "array destructuring" or array decomposition. See: https://ruby-doc.org/core-3.1.2/doc/syntax/assignment_rdoc.html#label-Array+Decomposition .

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