Skip to content

Instantly share code, notes, and snippets.

@davbeck
Created February 4, 2023 19:25
Show Gist options
  • Save davbeck/1a3ee5340823ba673c0c2c05a8db2645 to your computer and use it in GitHub Desktop.
Save davbeck/1a3ee5340823ba673c0c2c05a8db2645 to your computer and use it in GitHub Desktop.
import Foundation
struct Weak<Value: AnyObject> {
weak var value: Value?
init(_ value: Value) {
self.value = value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment