R/step.R

Defines functions step

Documented in step

#' Step
#'
#' @param x A numeric atomic object.
#' @family translations
#' @return A logical value.
#' @export
#'
#' @examples
#' step(1)

step <- function(x) {
  chk_numeric(x)
  x >= 0
}
poissonconsulting/extras documentation built on Jan. 18, 2024, 1:18 a.m.