R/contains_underscores.R

Defines functions contains_underscores

Documented in contains_underscores

#' Contains underscores
#' 
#' Does the input contain an underscore
#' 
#' @param funs Character vector
#' @export
contains_underscores <- function(funs){
    grepl("_", funs)
}
Dasonk/packageAnalyzeR documentation built on May 6, 2019, 1:38 p.m.