Skip to content

Instantly share code, notes, and snippets.

@polac24
Last active February 20, 2019 21:33
Show Gist options
  • Save polac24/d47b0027fba7e3829af1c1fec2d47499 to your computer and use it in GitHub Desktop.
Save polac24/d47b0027fba7e3829af1c1fec2d47499 to your computer and use it in GitHub Desktop.
func weaklyScopedNaive<T: AnyObject>(_ v: T, action: (inout T) -> ()) -> T? {
weak var weakValue: T?
do {
action(&v)
weakValue = v
}
return weakValue
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment