This function lists all the conflicts among fastverse packages and between fastverse packages and other attached packages. It can also be used to check conflicts for any other attached packages.
Usage
fastverse_conflicts(pkg = fastverse_packages())
Value
An object of class 'fastverse_conflicts': A named list of character vectors where the names are the conflicted objects, and the
content are the names of the package namespaces containing the object, in the order they appear on the search
path.
Details
There are 3 internal conflicts in the core fastverse which are not displayed by fastverse_conflicts()
:
collapse::funique
andcollapse::fdupliacted
maskkit::funique
andkit::fduplicated
. If both packages are detached, collapse is attached after kit. In general, the collapse versions are faster and a bit more versatile. The kit versions are also very fast and additionally supports matrices!collapse::fdroplevels masks
data.table::fdroplevels
. The former is faster and supports arbitrary data structures, whereas the latter has options to exclude certain levels from being dropped.
Examples
# Check conflicts between fastverse packages and all attached packages
fastverse_conflicts()
# Check conflicts among all attached packages
fastverse_conflicts(rm_stub(search()[-1], "package:"))
#> -- Conflicts ------------------------------------------ fastverse_conflicts() --
#> x methods::body<-() masks base::body<-()
#> x methods::kronecker() masks base::kronecker()