plusEqual {operators} | R Documentation |
Plus equal operator
object %+=% value
object |
object to which to add something |
value |
object to add |
NULL. Used for the side effect of changing the value of object
The operator %+=%
is S3-generic with a single default
method implemented at the moment.
Romain Francois <francoisromain@free.fr>
### standard examples x <- 4 x %+=% 4 x ### XML examples with the R4X package ## Not run: require("R4X") x <- xmlNode( "test" ) x %+=% '<foo><bar/></foo>' x ## End(Not run)