union_all: union_all

View source: R/14_dumd_all.R

union_allR 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

intersect_all

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)

tinyarray documentation built on Aug. 18, 2023, 9:07 a.m.