R/is_hashed.r

Defines functions is_hashed

Documented in is_hashed

#' Anser the question,"Is this environment hashed?"
#'
#' @name is_hashed
#' @export 
#' @param env An environment.
#' @return TRUE or FALSE
#' @useDynLib envestigate C_is_hashed
#'
is_hashed <- function(env){
  if (!is.environment(env)) stop("Not an environment!")
  .Call(C_is_hashed,env)
}
jeffreyhorner/envestigate documentation built on May 19, 2019, 4:01 a.m.