IndexSet
is a collection of increasing integers, therefore you can
map each index to the corresponding array element:
let array = ["sun", "moon", "star", "meteor"]
let indexSet: IndexSet = [2, 3]
let result = indexSet.map { array[$0] } // Magic happening here!
print(result) // ["star", "meteor"]
This assumes that all indices are valid for the given array.
If that is not guaranteed then you can filter the indices
(as @dfri correctly remarked):
let result = indexSet.filteredIndexSet { $0 < array.count }.map { array[$0] }
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…