Convert a reactivevalues object to a list — reactiveValuesToList
v1.9.0|Source:
R/reactives.R
Description
This function does something similar to what you might want or expect
base::as.list()
to do. The difference is that the calling context will take
dependencies on every object in the reactivevalue
s object. To avoid taking
dependencies on all the objects, you can wrap the call with isolate()
.
Arguments
- x
A
reactivevalues
object.- all.names
If
TRUE
, include objects with a leading dot. IfFALSE
(the default) don't include those objects.