capacity
var a: ArraySlice<Int> = [] a.reserveCapacity(10) for i in 0 ..< 20 { a.append(i) print(a.capacity) _ = a.popFirst() }