R/combine_lists.R

Defines functions combine_lists

combine_lists <-
  function(...){
    comb_lists <- c(...)
    # Precedence is given to named elements of lists earliest in "..."
    # containing those elements.
    return(comb_lists[which(!duplicated(names(comb_lists)))])
  }

Try the distfreereg package in your browser

Any scripts or data that you put into this service are public.

distfreereg documentation built on April 4, 2025, 12:30 a.m.