diff --git a/R/setops-methods.R b/R/setops-methods.R index ddc3383b..b080928b 100644 --- a/R/setops-methods.R +++ b/R/setops-methods.R @@ -100,11 +100,11 @@ setMethod("intersect", c("CompressedAtomicList", "CompressedAtomicList"), function(x, y) { fx <- if (!is(x, "IntegerList")) as(x, "FactorList") else x fy <- if (!is(y, "IntegerList")) as(y, "FactorList") else y - m <- S4Vectors:::matchIntegerPairs(togroup(PartitioningByEnd(x)), - unlist(fx, use.names=FALSE), - togroup(PartitioningByEnd(y)), - unlist(fy, use.names=FALSE), - nomatch=0L) + m <- S4Vectors::matchIntegerPairs(togroup(PartitioningByEnd(x)), + unlist(fx, use.names=FALSE), + togroup(PartitioningByEnd(y)), + unlist(fy, use.names=FALSE), + nomatch=0L) m[duplicated(m)] <- 0L x[relist(m > 0L, x)] })