File: syntactic-sugar.R

package info (click to toggle)
r-cran-memisc 0.99.31.8.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,136 kB
  • sloc: ansic: 5,117; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 593 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"%#%" <- function(x,descr){
    description(x) <- descr
    return(x)
}


"%##%" <- function(x,annot){
    for(n in names(annot)){
        annotation(x)[n] <- as.character(annot[n])
    }
    return(x)
}


"%@%" <- function(x,nm){
    nm <- substitute(nm)
    if(typeof(nm)=="symbol"){
        nm <- deparse(nm)
    } else {
        nm <- eval.parent(nm)
    }
    attr(x,nm)
}

"%@%<-" <- function(x,nm,value){
    nm <- substitute(nm)
    if(typeof(nm)=="symbol"){
        nm <- deparse(nm)
    } else {
        nm <- eval.parent(nm)
    }
    attr(x,nm) <- value
    return(invisible(x))
}