Is there a class that represents an unordered array in Ruby? I cannot use array because:
[1,2] != [2,1]
And I cannot use set because I can only have unique elements. I want a kind of both combinations. A list that doesn't care about ordering and can have more than 1 of the same element.