Skip to contents

Set intersection of arbitrary number of arguments.

Usage

mintersect(...)

Arguments

...

arguments to be intersected, vectors of the same mode, see intersect.

Details

The base R function intersect is a binary operation. mintersect works with any positive number of arguments.

If called with one argument, mintersect returns it. This is unlike intersect which gives an error in this case.

Calling mintersect with no arguments is an error (as it is for intercect).

Value

a vector representing the intersection of the arguments

Author

Georgi N. Boshnakov

Examples

mintersect(1:20, 3:18, 7:12)
#> [1]  7  8  9 10 11 12
mintersect(letters[1:20], letters[3:18], letters[7:12])
#> [1] "g" "h" "i" "j" "k" "l"
mintersect(1:4)
#> [1] 1 2 3 4