Possible Duplicate:
Masked functions in R
R: Masked Functions
function naming conflicts
If I have two packages: A and B. Say there is function named funfun in A and there is function named funfun in B too. When I load A and B, how do I use the first funfun?
require(A)
require(B)
If I want to use funfun in A, how do I write this?