Instead of having to do this:
var array = [T]() array.reserveCapacity(64)
You should be able to do this:
var array = [T](capacity: 64)
Which also makes this possible:
struct Foo { var data = [UInt8](capacity: 64) ... }
Would be nice if String had this as well.