These functions were soft-deprecated and renamed with node_poke_
prefix in rlang 0.2.0. This change follows a new naming convention
where mutation is referred to as "poking".
mut_node_car(x, newcar)mut_node_cdr(x, newcdr)
mut_node_caar(x, newcar)
mut_node_cadr(x, newcar)
mut_node_cdar(x, newcdr)
mut_node_cddr(x, newcdr)
mut_node_tag(x, newtag)
A language or pairlist node. Note that these functions are barebones and do not perform any type checking.
The new CAR or CDR for the node. These can be any R objects.
The new CAR or CDR for the node. These can be any R objects.
The new tag for the node. This should be a symbol.