isCALLTest if argument is a particular call
Test if argument is a particular call
Test if x
is a call to the function given by name
.
Used in newSimplification
definitions.
isCALL(x, name)
x
: object to be testedname
: The function to test for.x <- quote(mean(1:10)) isCALL(x, "mean") isCALL(x, "sd")
Useful links