union_all {tinyarray} | R Documentation |
union_all
Description
calculate union set for two or more elements
Usage
union_all(...)
Arguments
... |
some vectors or a list with some vectors |
Value
vector
Author(s)
Xiaojie Sun
See Also
Examples
x1 = letters[1:4]
x2 = letters[3:6]
x3 = letters[3:4]
re =intersect_all(x1,x2,x3)
re2 = intersect_all(list(x1,x2,x3))
re3 = union_all(x1,x2,x3)
[Package tinyarray version 2.4.2 Index]