clear {container} | R Documentation |
Clear a Container
Description
Removes all elements from the container object.
Usage
clear(x)
ref_clear(x)
## S3 method for class 'Container'
clear(x)
## S3 method for class 'Container'
ref_clear(x)
## S3 method for class 'dict.table'
clear(x)
## S3 method for class 'dict.table'
ref_clear(x)
Arguments
x |
any |
Value
For Container, an object of class Container (or one of the respective derived classes).
For dict.table an object of class dict.table.
Examples
co = container(1, 2, mean)
clear(co)
co
ref_clear(co)
co
dit = dict.table(a = 1, b = 2)
clear(dit)
dit # original was not touched
ref_clear(dit)
dit # original was cleared
[Package container version 1.0.4 Index]