identity_ellipsis | R Documentation |
It can often be useful (when developing pipelines for example), to have
access to a function that simply returns the element that it receives. The
base::identity()
function works well for only one argument, but in some
cases following arguments should be ignored. In those cases the
identity_ellipsis()
function can come in handy.
The function was previously called noop()
but that name is now deprecated.
identity_ellipsis(x, ...)
noop(x, ...)
x |
The single argument to (not) process. |
... |
Any other arguments are ignored |
The argument x
is returned unchanged.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.