# Functional programming tools --------------------------------------------
#' Chain
#'
#' Chains a list of functions together.
#' A shortcut for \code{purrr::compose(..., .dir = "forward")}.
#'
#' @param ... Any number of functions
#'
#' @return A composed function
#' @export
#'
`.` <- function(...) {
purrr::compose(... ,.dir = "forward")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.