unwrap_as {refset} | R Documentation |
unwrap_as
creates a new variable which, when evaluated,
calls contents
to return the parcel contents.
unwrap_as(x, parcel, env = parent.frame())
x |
name of the variable to bind to |
parcel |
an object of class 'parcel' |
env |
environment to assign the variable into |
Other wrapping functions: contents
,
is.parcel
, wrapset
,
wrap
vec <- 1:10
parcel <- wrapset(vec, vec > 3)
unwrap_as(y, parcel)
y