Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created September 23, 2008 03:37
Show Gist options
  • Save ELLIOTTCABLE/12213 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/12213 to your computer and use it in GitHub Desktop.
def x(*a); end; method(:x).arity
# => -1
lambda {}.arity
# => -1
def x; end; method(:x).arity
# => 0
lambda {|| }.arity
# => 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment