Ruby 中管道和括号的组合规则
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如其他人提到的,这称为“数组解构”或数组分解。请参阅: 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 .