Displaying 1 result from an estimated 1 matches for "foobase".
2007 Mar 15
4
R 2.5.0 devel try issue in conjuntion with S4 method dispatch
...x) { print(x); ret<-try(stop("forced.")); print(ret)}
f(3)
[1] 3
Error in try(stop("forced.")) : forced.
[1] "Error in try(stop(\"forced.\")) : forced.\n"
attr(,"class")
[1] "try-error"
## using S4 classes and methods
setClass("fooBase",
representation("VIRTUAL",
width = "numeric",
height = "numeric"),
prototype(width = 1024,
height = 1024),
validity = NULL,
where = .Global...