R/Account.R

#' An S4 class to represent a bank account.
#'
#' @slot balance A length-one numeric vector
Account <- setClass("Account",
                    slots = list(balance = "numeric")
)
hf2004418/outdepreg documentation built on May 21, 2019, 1:45 a.m.