R/notex.R

Defines functions notex

#' Tells If Not Extant
#' @param first An object
#' @param second An object
#' @return A boolean
#' @export

notex <- function(object)
{
  if(class(object) != "character")
  {
    stop('~~~object must be a string "like this"~~~')
  }else{
    judgement <- exists(object) == F
  }
  return(judgement)
}

# (GNU3 c) 2019 John Michael Adrian Wojahn
mikew93/cooltools documentation built on Dec. 8, 2019, 1:46 p.m.