R/utils.R

Defines functions g_wc_str list_options set_options get_options

# Keeping logger options
my_options <- new.env(parent = emptyenv())

get_options <- function(k, v) {
  my_options[[k]]
}

set_options <- function(k, v) {
  my_options[[k]] <- v
}

list_options <- function() {
  names(my_options)
}

g_wc_str <- function(start, end) {
  wc_rd <- (end - start)[[3]]
  wc_string <- paste(sprintf("%.3f", wc_rd), "seconds")
}

Try the CRE package in your browser

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

CRE documentation built on Oct. 19, 2024, 5:07 p.m.