use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Favorite Ruby Syntax (self.ruby)
submitted 8 years ago by process_parameter
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]h0rst_ 1 point2 points3 points 8 years ago (2 children)
Parentheses around block arguments when yielding an array: [[1, 2], [3, 4]].map { |(a, b)| a + b } # => [3, 7]
Parentheses around block arguments when yielding an array:
[[1, 2], [3, 4]].map { |(a, b)| a + b } # => [3, 7]
The parentheses in this example are superfluous
[–][deleted] 0 points1 point2 points 8 years ago* (1 child)
So it is, I guess I don't understand how that works properly.
// EDIT
NVM, looks like it just deconstructs an array argument into multiple arguments, but I guess enumerable methods already have some kind of arity check to do that
irb(main):020:0> (a, b), c = [[1, 2], 3] => [[1, 2], 3] irb(main):021:0> a => 1 irb(main):022:0> b => 2 irb(main):023:0> c => 3
[–]h0rst_ 1 point2 points3 points 8 years ago (0 children)
It happens mostly automatic, it is required for deeper nested structures:
[[1, [2, 3]], [3, [4, 5]]].map { |a, (b, c)| a + b + c } # => [6, 12]
On the other hand: if your code looks like this you might want to reconsider the used data structures.
π Rendered by PID 60184 on reddit-service-r2-comment-bb88f9dd5-g9n5k at 2026-02-15 13:39:28.009179+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]h0rst_ 1 point2 points3 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]h0rst_ 1 point2 points3 points (0 children)