How can I determine what S3 method will be called for a particular first-argument class?
I was imagining something like functionDispatch('str','numeric') => utils:::str.default , but I can't find anything like this. For that matter, I was wondering if anyone had written a version of `methods` which gave their fully qualified names if they were not visible, e.g. methods('str') => utils:::str.data.frame utils:::str.default stats:::str.dendrogram stats:::str.logLik utils:::str.POSIXt or methods('str') => $utils "str.data.frame" "str.default" "str.POSIXt" $stats "str.dendrogram" "str.logLik" Thank you, -s [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.