Skip to content

Instantly share code, notes, and snippets.

@polac24
Created February 19, 2019 18:30
Show Gist options
  • Save polac24/33e60f60b4901aa67bba4f855a147e18 to your computer and use it in GitHub Desktop.
Save polac24/33e60f60b4901aa67bba4f855a147e18 to your computer and use it in GitHub Desktop.
func with<T>(x: T, _ f: (inout T) -> Void) -> T {
var value = x
f(&value)
return value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment