Ruby tip. Double association in a ternary operator
February
9th,
2012
I found myself today in the opportunity to use a double association in a ternary operator. Basically I wanted to assign 2 variables based on a certain condition.
Normal ruby double assignment works easy like this:
#simple double assignmenta,b=1,2a# 1b# 2
Up to here no surprise. But what if I want to evaluate a condition and assigns both the variables??