On 11 Jan 2006, jason at cs.jhu.edu wrote:
> p.s. Note that one workaround is
>
>> bar <- function(n,...) { f <- function() foo(...);
> + replicate(n,f()) }
Another appears to be:
bar <- function(n, ...) {
args <- list(...)
replicate(n, do.call("foo", args))
}
+ seth