BASE$del_attr {bandicoot}R Documentation

Delete an attribute

Description

This function delete an attribute.

Usage

BASE$del_attr(attr_name)

Arguments

attr_name

Character. Attribute name.

Value

Return the object itself.

Examples


test <- BASE$instantiate()
test$set_attr("x", 1)
test$x
test$del_attr("x")
test$x

[Package bandicoot version 1.0.0 Index]