Closed rpruim closed 2 years ago
Looks like we have a few instances of this in some old code. Examples can be found in findZerosMult.R, rfun.R, and perhaps elsewhere.
findZerosMult.R
rfun.R
I've replaced some of these with calls to inherits() and others with "is functions" (is.numeric(), rlang::is_formula(), etc.)
inherits()
is.numeric()
rlang::is_formula()
Looks like we have a few instances of this in some old code. Examples can be found in
findZerosMult.R
,rfun.R
, and perhaps elsewhere.