Skip to content

Instantly share code, notes, and snippets.

@sisoje
Last active August 18, 2020 15:01
Show Gist options
  • Save sisoje/14c2a6fe2ac7521785cc2d6f7d00206e to your computer and use it in GitHub Desktop.
Save sisoje/14c2a6fe2ac7521785cc2d6f7d00206e to your computer and use it in GitHub Desktop.
Resource acquisition is initialization (RAII) in Swift: Implementation
class DeinitBlock {
let onDeinit: () -> Void
init(_ block: @escaping () -> Void) {
onDeinit = block
}
deinit {
onDeinit()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment