list of integer vectors on which intersection or union must be performed
sorted
logical value used to specify if the returned indexes should be sorted ascending (default TRUE)
Value
A vector of integers.
Details
The returned vector is sorted ascending.
intersectIndexesList is implemented in C++ and corresponds to sort(unique(Reduce(f=intersect,x=lst))) (without the sort function if sorted=FALSE).
unionIndexesList is partially implemented in C++ and corresponds to sort(unique(Reduce(f=union,x=lst))) (without the sort function if sorted=FALSE).