#' Cumulative functions implemented in a functional style
#'
#' @param x A logical vector.
#' @details
#'
#' Functions leveraging map and a function operator.
#'
#' @examples
#' library(functionalPlayground)
#'
#' x <- c(TRUE, TRUE, FALSE, FALSE)
#' cumulative_all(x)
#' cumulative_any(x)
#' cumulative_none(x)
#' @export
cumulative_all <- cumulative_f(recursive_all)
#' @rdname cumulative_all
#' @export
cumulative_any <- cumulative_f(recursive_any)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.