Learn R Programming

drake (version 5.2.1)

eager_load_target: Load a target right away (internal function)

Description

This function is only exported to make active bindings work safely. It is not actually a user-side function.

Usage

eager_load_target(target, cache, namespace, envir, verbose)

Arguments

cache

drake cache. See new_cache(). If supplied, path and search are ignored.

namespace

character scalar, name of an optional storr namespace to load from.

envir

environment to load objects into. Defaults to the calling environment (current workspace).

verbose

logical or numeric, control printing to the console. Use pkgconfig to set the default value of verbose for your R session: for example, pkgconfig::set_config("drake::verbose" = 2).

0 or FALSE:

print nothing.

1 or TRUE:

print only targets to build.

2:

in addition, print checks and cache info.

3:

in addition, print any potentially missing items.

4:

in addition, print imports. Full verbosity.