File: mapply.R

package info (click to toggle)
r-bioc-biocgenerics 0.36.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 752 kB
  • sloc: sh: 4; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
### =========================================================================
### The mapply() generic
### -------------------------------------------------------------------------
###
### Need to explicitly define this generic otherwise the implicit generic in
### package "base" would dispatch on all its arguments. Here we set dispatch
### on the 2nd arg (the '...' arg) only!
###
### Note that dispatching on '...' is supported starting with R 2.8.0 only.

setGeneric("mapply", signature="...")
apply_hotfix73465(getGeneric("mapply"))