@data, @x, @y, and @z are all arrays of the same type. I use @data in my view to iterate through it and display all the values.
@data = if params[:a] == "1"
@x
elsif params[:b] == "1"
@y
elsif params[:c] == "1"
@z
What I'd like to do is also intersect the arrays if multiple parameters are applied. So, for example, if ?a=1&b=2 is appended to the URL, then I'd like @data to equal @x & @y
I'm not sure how to write this code – what's the easiest way to figure out which params == 1 and then intersect the corresponding arrays and store that in @data?