Skip to content

Instantly share code, notes, and snippets.

@alandipert
Created September 1, 2014 14:55
Show Gist options
  • Save alandipert/fc7864b5111fd74aed2f to your computer and use it in GitHub Desktop.
Save alandipert/fc7864b5111fd74aed2f to your computer and use it in GitHub Desktop.
unary ~ on Symbol for a Lisp-2 feel
class Symbol
def ~@
method(self)
end
end
def inc(n)
n + 1
end
[1,2,3].map(&~:inc) #=> [2,3,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment