File: generics.R

package info (click to toggle)
r-cran-nlp 0.3-2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: makefile: 2
file content (16 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
content <-
function(x)
    UseMethod("content", x)

`content<-` <-
function(x, value)
    UseMethod("content<-", x)

meta <-
function(x, tag = NULL, ...)
    UseMethod("meta", x)

`meta<-` <-
function(x, tag = NULL, ..., value)
    UseMethod("meta<-", x)