Aliases: any
Keywords: logic
### ** Examples range(x <- sort(round(stats::rnorm(10) - 1.2, 1)))
[1] -3.8 0.7
if(any(x < 0)) cat("x contains negative values\n")
x contains negative values