In the following array, how would I find the position of the product with id = 71?
[[[#<Product id: 71>, #<BigDecimal:x>], 0], [[#<Product id: 73>, #<BigDecimal:x>], 1]]
Alternatively, if I have @product = Product.find(71), how would I then find that this object is associated with the number 0 and not 1 in the above array?