Returns a tuple populated with the elements at the given indexes.
Returns a tuple populated with the elements at the given indexes. Raises if any index is invalid.
{"a": 1, "b": 2, "c": 3, "d": 4}.values_at("a", "c") #=> {1, 3}