funchir-infix {funchir} | R Documentation |
Convenient Infix Operators
Description
An infix operator as convenient shorthand for set modulation (A\B)
Usage
A %\% B
Arguments
A , B |
Objects which can be treated as sets. |
Value
This is just a wrapper for setdiff
Examples
set1 <- 1:5
set2 <- 4:6
set1 %\% set2 # c(1,2,3)
[Package funchir version 0.3.0-1 Index]