R/0-utils.R

Defines functions walk

walk <- function(.x, .f, ...) {
  for (idx in seq_along(.x)) .f(.x[[idx]], ...)
  invisible(.x)
}
yjunechoe/LingWER documentation built on April 6, 2022, 10:14 p.m.