В Ruby можно использовать любой хеш-ключ:
hash = {
42 => "an integer",
[42, "forty two"] => "an array",
Class => "a class"
}
#⇒ {42=>"an integer", [42, "forty two"]=>"an array", Class=>"a class"}
hash[[42, "forty two"]]
#⇒ "an array"
Тем не менее, в вашем случае вы можете использовать массив [vertex, material]
в качестве ключа:
unless vertices.key?([vertex, material])
new_vertices_and_materials << [vertex, material]
vertices[[vertex, material]] = @vertex_index
@vertex_index += 1
end
Более рубиновым подходом было бы вызвать Enumerable#uniq
на входе и сделать:
input = [ # example input data
[:vertex1, :material1],
[:vertex2, :material1],
[:vertex2, :material1],
[:vertex2, :material2],
[:vertex2, :material2]
]
new_vertices_and_materials = input.uniq
vertices_and_materials_with_index =
new_vertices_and_materials.
zip(1..new_vertices_and_materials.size).
to_h
#⇒ {[:vertex1, :material1]=>1,
# [:vertex2, :material1]=>2,
# [:vertex2, :material2]=>3}