Displaying 1 result from an estimated 1 matches for "sigclass".
Did you mean:
  regclass
  
2006 Oct 11
1
Possible bug in accessing methods documentation? (PR#9291)
...no documentation for function 'featureNames' and signature 'object = "missing"'
> 
> 
> Am I expecting the wrong thing or is this broken?  
I think it's broken.  The line that looks broken is in .helpForCall, 
where it has
methods::"elNamed<-"(sigClasses, arg, class(argVal))
Looking at the elNamed<- function, I think this is supposed to be 
equivalent to
sigClasses[[arg]] <- class(argVal)
but it is not making any assignment.  I don't understand the point of 
doing the assignment that way, or why it's not working, so I'll leav...