R/time_start.R

Defines functions time_start

Documented in time_start

#' @title time_start
#'
#' @description Initializes the starting point of a time measurement.
#'
#' @return Creates a time_started object in the global environment.
#' @examples -
#' @export

time_start <- function(
){

  # Create the time start object in the global environment
  time_started <- NULL
  time_started <<- Sys.time()
}
janbrederecke/prepareD documentation built on Oct. 26, 2022, 8:06 p.m.