R/constant.R

Defines functions constant

Documented in constant

#' Generate the same value every time
#'
#' @param a Any R object
#'
#' @examples
#' constant(NULL) %>% show_example()
#' @template generator
#' @export
constant <- function(a) {
  qc_gen(function() hedgehog::gen.choice(a))
}

Try the quickcheck package in your browser

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

quickcheck documentation built on Oct. 12, 2023, 1:08 a.m.