dot-columnExists.Rd
Determine if a column, passed using NSE, exists in a data.frame
.columnExists(data, col)
the data.frame to be searched
the name of the column to be searched
TRUE if the column exists, FALSE otherwise
TRUE
FALSE
# tibble::tibble(good=1) %>% .columnExists(good) # TRUE # tibble::tibble(good=1) %>% .columnExists(bad) # FALSE