R/functions_utility.R
inc-set.Rd
inc<- increments x by value. Equivalent to x <- x + value.
inc<-
x
x <- x + value.
inc(x) <- value
object to be incremented
value by which x will be modified
x <- 1:5 inc(x) <- 5 x#> [1] 6 7 8 9 10