is.qe.code.Rd
This function checks if an object is of class 'qe.code'.
is.qe.code(x)
An object. The object to be checked.
A logical value. TRUE if the object is of class 'qe.code', otherwise FALSE.
dt <- 1:5 class(dt) <- c("qe.code", class(dt)) is.qe.code(dt) # Should return TRUE #> [1] TRUE