What does ... = ... mean as a function parameter? I saw this in some R source code. I understand that ... is additional arguments, but not sure what the equals does?
What does … = … mean as a function parameter? I saw this in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is superfluous and the same as
.... Probably the author meant that the...of the called function should equal to the...of the calling function, but that’s the same as using just...(in fact the...=...construct may be confusing since it may invoke the idea that arguments other than...of the called function won’t be used which is not true).