R/meta.R

Defines functions meta_exists meta_path meta_find

Documented in meta_exists meta_find meta_path

#' cache meta directory
#'
#' The cache meta directory hold information about objects stoded in the cache
#'
#' @details
#' `meta` is a directory for holding supplementary information
#'
#'
#' @rdname meta
#' @export
meta_find <- function( cache=cache_path() ) fs::path( cache, ".meta" )


#' @rdname meta
#' @export
meta_path <- function( cache = cache_path() ) { fs::path( cache, ".meta" ) }


#' @rdname meta
#' @export
meta_exists <- function() fs::dir_exists( meta_path() )
decisionpatterns/cache documentation built on June 15, 2020, 9:35 p.m.