Does the input contain elements that are all atomic?
Source:R/check-scalar-allAreAtomic.R
check-scalar-allAreAtomic.Rd
Does the input contain elements that are all atomic?
Examples
## TRUE ====
allAreAtomic(data.frame(a = "foo", b = "bar"))
#> [1] TRUE
allAreAtomic(list(a = "foo", b = "bar"))
#> [1] TRUE
## FALSE ====
allAreAtomic(data.frame())
#> [1] FALSE
allAreAtomic(list(a = "x", b = list()))
#> [1] FALSE