What to do with assignments with selections? ```r library(dcmodify) m <- modifier(x[x > 10] <- 10) ``` This works, but should it be translated into ```r m <- modifier(if (x > 10) x <- 10) ``` ?