View source: R/futurize_supported_tools.R
| futurize_supported_packages | R Documentation |
List packages and functions supporting futurization
futurize_supported_packages()
futurize_supported_functions(package)
package |
A package name. |
A character vector of package or function names.
futurize_supported_functions() produces an error if packages
required by the futurize transpiler are not installed.
pkgs <- futurize_supported_packages()
pkgs
if (requireNamespace("future.apply")) {
fcns <- futurize_supported_functions("base")
print(fcns)
}
if (requireNamespace("doFuture")) {
fcns <- futurize_supported_functions("foreach")
print(fcns)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.