In ruby, what is the best/most-elegant way to return a value such as:
#method returns true or false if 'do i match' is present in string
def method(str)
str =~ /do i match/
end
|
In ruby, what is the best/most-elegant way to return a value such as:
| |||
|
feedback
|
|
Some people would do:
The second I rather prefer the more explicit syntax:
This does the truthiness, but to me feels clearer. Do what feels cleanest to you. | |||
|
feedback
|
|
I may be a heretic for saying it but I think that they implicit return is beautiful. In this case it evaluates to true or false but I can see how people might think that this is unclear. You could keep the implicit return and make this instead:
| |||
|
feedback
|
|
A compromise between readability and performance
| |||||
feedback
|
== trueor== falseanyway. – rampion Feb 19 '10 at 3:13puts "I work!" if method('do i match')will print "I work!". There's no need for.zero?. – rampion Feb 19 '10 at 14:52