dots_tbl_output.Rd
This is a helper function to transform ... from user-facing functions
into arguments for make_tbl_output
.
dots_tbl_output(...)
Ellipsis, passed on from a higher function
If ...
is empty, returns NULL. Otherwise it converts
...
into a named list with elements "lazy" and "limit".
For non-empty but partially specified arguments, it adds
the following defaults: lazy = TRUE
, limit = Inf
.
For instance, if only limit = 3 is passed, make_tbl_output
will return a lazily evaluated query.
To safeguard against accidentally loading large queries into memory
by only specifying lazy = FALSE
, an error is thrown in this case.