Problem Statement
Which statement correctly describes a closure capture list in Swift?
Explanation
In Swift when closures capture `self` or other references you can provide a capture list (e.g., `[weak self]`) to control how those references are captured, often to avoid retain cycles in reference-type contexts.
Practice Sets
This question appears in the following practice sets: