Skip to content

Instantly share code, notes, and snippets.

@memfrag
Last active August 29, 2015 14:04
Show Gist options
  • Save memfrag/fd96cf1729001a3942a7 to your computer and use it in GitHub Desktop.
Save memfrag/fd96cf1729001a3942a7 to your computer and use it in GitHub Desktop.
[Swift] Custom Assignment Operator
operator infix <- {}
infix func <- <T>(inout left: T, right: T) {
left = right
}
var value = 0 // Initialize
value <- 1337
// value now contains 1337
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment