Identity {functional} | R Documentation |
Identity function.
Description
Is concatenation benign?
Usage
Identity(...)
Arguments
... |
tautological arguments |
Value
The tautologized arguments, concatenated
Examples
list.copy <- function(list)
Reduce(Identity, list)
list <- c(1, 2, 3)
stopifnot(list.copy(list) == list)
[Package functional version 0.6 Index]