R/qm.R

Defines functions qm

Documented in qm

#' qm
#' 
#' Wraps an input in quotation marks.
#' 
#' @param x Character or Numeric.
#' 
#' @return A character string that begins and ends with quotation marks.
#' @author Jonathan A. Greenberg
#' 
#' @examples {
#' qm("Hi!")
#' qm(42) 
#' }
#' @export

qm <- function(x)
{
	paste('"',x,'"',sep="")
}
gearslaboratory/gdalUtils documentation built on Feb. 17, 2020, 8:09 a.m.