R/is.R
is_vector_3.Rd
Test if object is a vector of length 3
is_vector_3(x)
An object to test.
A logical.
is_vector_3(c(1, 2, 3)) #> [1] TRUE is_vector_3(c(1, 2)) #> [1] FALSE