Skip to content

Instantly share code, notes, and snippets.

@twof
Created January 27, 2017 07:49
Show Gist options
  • Select an option

  • Save twof/f2618f5d4db6705a683fc3b72cc138a7 to your computer and use it in GitHub Desktop.

Select an option

Save twof/f2618f5d4db6705a683fc3b72cc138a7 to your computer and use it in GitHub Desktop.
func swapTwoValues<T>(_ a: inout T, _ b: inout T) {
let temporaryA = a
a = b
b = temporaryA
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment