Skip to content

Instantly share code, notes, and snippets.

@sisoje
Last active February 1, 2019 13:43
Resource acquisition is initialization (RAII) in Swift: Example
extension URLSessionDataTask {
var cancellation: DeinitBlock {
return DeinitBlock { [weak self] in
self?.cancel()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment