What I was wishing for:
all(promiseA,promiseB).then { resultA, resultB in
}
Based on the docs it would have to be
all(promiseA,promiseB).then { result in
let resultA = result[0]
let resultB = result[1]
}
or
Promise<Void>.zip(promiseA, promiseB).then { resultA, resultB in
}
Any thoughts?