Skip to contents

Generic print method for 'pkgcheck' objects.

Usage

# S3 method for pkgcheck
print(x, deps = FALSE, ...)

Arguments

x

A 'pkgcheck' object to be printed.

deps

If 'TRUE', include details of dependency packages and function usage.

...

Further arguments pass to or from other methods (not used here).

Value

Nothing. Method called purely for side-effect of printing to screen.

See also

Other pkgcheck_fns: pkgcheck_bg(), pkgcheck()

Examples

if (FALSE) {
checks <- pkgcheck ("/path/to/my/package")
print (checks) # print full checks, starting with summary
summary (checks) # print summary only
}