1
vote
Uniq by object attribute in Ruby
You can use a hash, which contains only one value for each key:
Hash[*recs.map{|ar| [ar[attr],ar]}.flatten].values
…
0
votes
3
votes
‘pass parameter by reference’ in Ruby ?
You can accomplish this by explicitly passing in the current binding:
def func(x, bdg)
eval "#{x} += 1", bdg
end
a = 5
func(:a, binding)
puts a # => 6
…
2
votes
‘pass parameter by reference’ in Ruby ?
The bottom of this page shows how to create a more ref-like equivalent: http://onestepback.org/index.cgi/Tech/R …
4
votes
Ruby Definition of Self
Ruby and other languages (such as Smalltalk and Objective-C) prefer the term "message passing", whereas Java and C++ prefer "method invocation". That is, the "Java way" is to call a method on an ob …
