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