allSame.Rd
Given a vector, are all the values in it the same?
allSame(x)
a vector
TRUE, if all the values are the same (or the vector is empty)
allSame(c(TRUE, TRUE, TRUE))#> Loading required package: utils#> [1] TRUEallSame(c(TRUE, TRUE, FALSE))#> [1] FALSEallSame(c(FALSE, FALSE))#> [1] TRUEallSame(NULL)#> [1] TRUE
Tomas Sieger