From 89842fa6241663c5b59d0cbf039b5653112f5eb4 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Fri, 17 Oct 2025 16:58:30 -0700 Subject: [PATCH] Use '::' for exported names --- R/setops-methods.R | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)] })