R/zzz_BASE.R
BASE-cash-del_attr.Rd
This function delete an attribute.
BASE$del_attr(attr_name)
Character. Attribute name.
Return the object itself.
test <- BASE$instantiate() test$set_attr("x", 1) test$x #> [1] 1 test$del_attr("x") test$x #> NULL