Skip to content

Instantly share code, notes, and snippets.

@mgomes
Created May 10, 2011 17:10
Show Gist options
  • Save mgomes/964911 to your computer and use it in GitHub Desktop.
Save mgomes/964911 to your computer and use it in GitHub Desktop.
Ruby Array XOR
class Array
def ^(ary)
return (ary | self) - (ary & self)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment