Add attributes to an object
set_attrs()
adds, changes, or zaps attributes of objects. Pass a
single unnamed NULL
argument to zap all attributes. For
uncopyable types, use mut_attrs()
.
set_attrs(.x, ...) mut_attrs(.x, ...)
.x |
An object to decorate with attributes. |
... |
<dynamic> A list of named attributes. Pass
a single unnamed |
Unlike structure()
, these setters have no special handling of
internal attributes names like .Dim
, .Dimnames
or .Names
.
set_attrs()
returns a modified shallow copy
of .x
. mut_attrs()
invisibly returns the original .x
modified in place.
These functions are deprecated since rlang 0.3.0.
set_attrs(letters, names = 1:26, class = "my_chr") # Splice a list of attributes: attrs <- list(attr = "attr", names = 1:26, class = "my_chr") obj <- set_attrs(letters, splice(attrs)) obj # Zap attributes by passing a single unnamed NULL argument: set_attrs(obj, NULL) set_attrs(obj, !!! list(NULL)) # Note that set_attrs() never modifies objects in place: obj # For uncopyable types, mut_attrs() lets you modify in place: env <- env() mut_attrs(env, foo = "bar") env
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.