Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve funcall and apply #78

Merged
merged 1 commit into from
Aug 9, 2016

Conversation

kariya-mitsuru
Copy link
Contributor

  1. funcall can be called with one argument.

    (funcall '+) ; -> 0
    
  2. apply can be called with more than two arguments.

    (apply '+ 1 2 '(3 4)) ; -> 10
    
  3. a last argument of apply can be nil.

    (apply '+ nil)     ; -> 0
    (apply '+ 1 2 nil) ; -> 3
    

1. funcall can be called with one argument.

   (funcall '+) ; -> 0

2. apply can be called with more than two arguments.

   (apply '+ 1 2 '(3 4)) ; -> 10

3. a last argument of apply can be nil.

   (apply '+ nil)     ; -> 0
   (apply '+ 1 2 nil) ; -> 3
@mattn mattn merged commit d4aa0d3 into mattn:master Aug 9, 2016
@kariya-mitsuru kariya-mitsuru deleted the improve-funcall-apply branch August 10, 2016 00:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants