Function Definition
An R function object. These functions provide the base mechanisms for defining new functions in the R language.
The names in an argument list can be back-quoted non-standard names (see ‘backquote’). If value is missing, NULL is returned. If it is a single expression, the value of the evaluated expression is returned. (The expression is evaluated as soon as return is called, in the evaluation frame of the function and before any on.exit expression is evaluated.) If the end of a function is reached without calling return, the value of the last evaluated expression is returned.
(普通的函数定义模型:
普通的函数与lambda函数DeclareLambdaFunction在结构上是一致的, 但是有一个区别就是lambda函数DeclareLambdaFunction是没有Environment的, 所以lambda函数会更加的轻量化,不容易产生内存溢出的问题)