Skip to contents

This is basically a wrapper around rlang::call2() that allows you to extract the arguments from a function and pass them to rlang::call2() without having to type them out.

Usage

call_full(.fn, ...)

Arguments

.fn

The function to call.

...

Arguments to pass to the function.

Value

A call to the function with its arguments.