1 2 3 4 5 6 7 8 9 10 11 12 13
|
### =========================================================================
### The cbind() and rbind() generics
### -------------------------------------------------------------------------
###
### Need to explicitly define those generics otherwise the implicit generics
### in package "base" would dispatch on 'deparse.level'.
###
### Note that dispatching on '...' is supported starting with R 2.8.0 only.
setGeneric("cbind", signature="...")
setGeneric("rbind", signature="...")
|