Files
Rpacman/man/list_depends.Rd

26 lines
803 B
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/list_depends.R
\name{list_depends}
\alias{list_depends}
\title{Recursively find all the installed dependencies of one or more installed
packages.}
\usage{
list_depends(packages, fullTree = FALSE)
}
\arguments{
\item{packages}{A character vector of packages to find dependencies of}
\item{fullTree}{A boolean to select the return type (See details)
The fullTree parameter can be used to provide only the packages and versions
required to re-build an environment of dependencies for the provided packages
or a table capable of being used to construct a full dependency tree.}
}
\value{
A data frame with the dependency tree
}
\description{
Recursively find all the installed dependencies of one or more installed
packages.
}