%-=% {bandicoot} | R Documentation |
In-place subtraction operator
Description
In-place subtraction operator
Usage
x %-=% y
Arguments
x |
Object. |
y |
Another object. |
Value
Depends on the method.
Examples
COMPANY <- new_class(class_name = "COMPANY")
company <- COMPANY$instantiate
register_method(COMPANY,
..init.. = function(name, age) {
self$name <- name
self$age <- age
})
register_method(COMPANY,
..isub.. = function(y) {
self$age <- self$age[self$name != y]
self$name <- self$name[self$name != y]
})
good_company <- company(c("patrick", "james"),
c(33, 34))
good_company %-=% "patrick"
good_company$name
[Package bandicoot version 1.0.0 Index]