Takes any vector of languages or ISO codes and returns a logical vector.
Examples
is.glottolog(c('Kabardian', 'Russian'))
#> [1] TRUE TRUE
is.glottolog('Buyaka')
#> [1] FALSE
if (FALSE) { # \dontrun{
# Add warning message with sugestions
is.glottolog(c('Adyge', 'Russian'), response = TRUE)
# > FALSE TRUE
# Warning message:
# In is.glottolog(c('Kabardia', 'Russian'), response = TRUE) :
# Language Kabardia is absent in our version of the Glottolog database.
# Did you mean Kabardian, Greater Kabardian?
} # }