How can you capture multiple arguments weakly in a Swift closure?
From Expressions in “The Swift Programming Language” (emphasis added): Closure Expression … A closure expression can explicitly specify the values that it captures from the surrounding scope using a capture list. A capture list is written as a comma separated list surrounded by square brackets, before the list of parameters. If you use a capture … Read more