R/unitconversion.foot.to.yard.R

Defines functions unitconversion.foot.to.yard

Documented in unitconversion.foot.to.yard

#' Unit Conversion - Length - Foot to Yard  
#' 
#' Performs a conversion of lengths from feet to yards. 
#'
#' @param x Vector - Values in units of feet
#'
#' @return x, but converted to yards 
#'
#' @references
#' NIST. Handbook 133 - Checking the Net Contents of Packaged Goods - Appendix E -  General Tables of Units of Measurement. 2020.  
#' https://www.nist.gov/system/files/documents/2019/12/03/00-20-h133-apdxE_final-17.pdf
unitconversion.foot.to.yard <- function(
  x = 1
) {
  x / 3
}

#' @rdname unitconversion.foot.to.yard
unitconversion.ft.to.yd <- unitconversion.foot.to.yard
burrm/lolcat documentation built on Sept. 15, 2023, 11:35 a.m.