Displaying 3 results from an estimated 3 matches for "findgeneric".
2004 Oct 28
1
Internal function isUME() in findGeneric() is wrong (PR#7320)
Full_Name: Jeff Hallman
Version: 2.0
OS: Linux
Submission from: (NULL) (132.200.32.34)
The function findGeneric() in the utils namespace contains this internal
function:
isUME <- function(e) {
if (is.call(e) && (is.name(e[[1]]) || is.character(e[[1]]))) {
switch(as.character(e[[1]]), UseMethod = as.character(e[[2]]),
"{" = isUMEbrace(e), "if&q...
2004 Oct 29
0
(PR#7320) Internal function isUME() in findGeneric() is
...mment (and none in BioC).
>
> br> On Thu, 28 Oct 2004 jhallman@frb.gov wrote:
>
> >> Full_Name: Jeff Hallman
> >> Version: 2.0
> >> OS: Linux
> >> Submission from: (NULL) (132.200.32.34)
> >>
> >>
> >> The function findGeneric() in the utils namespace contains this internal
> >> function:
> >>
> >> isUME <- function(e) {
> >> if (is.call(e) && (is.name(e[[1]]) || is.character(e[[1]]))) {
> >> switch(as.character(e[[1]]), UseMethod = as.character(e[[2]]),
>...
2009 Mar 17
1
exporting s3 and s4 methods
...ats)
exportMethods(bigglm)
importClassesFrom(DBI)
useDynLib(biglm)
export(biglm)
export(bigglm)
in NAMESPACE, the S3 generic is not exported.
> methods("bigglm")
[1] bigglm.RODBC* bigglm.data.frame* bigglm.function*
Non-visible functions are asterisked
Warning messages:
1: In findGeneric(generic.function, parent.frame()) :
'bigglm' is a formal generic function; S3 methods will not likely be found
2: In methods("bigglm") : function 'bigglm' appears not to be generic
[This is R 2.7.2, admittedly a little ancient]
-thomas
Thomas Lumley Assoc....