R/which_max_length.R

Defines functions which.max.length

Documented in which.max.length

#' Which max length
#' 
which.max.length <- function(x) {
  
  id <- nchar(x) %>% which.max()
  
  x[id]
  
}
kristian-bak/shinyStocks documentation built on Aug. 16, 2022, 4:15 a.m.