search for: r38631

Displaying 2 results from an estimated 2 matches for "r38631".

Did you mean: 138631
2014 Dec 17
2
vapply definition question
vapply <- function(X, FUN, FUN.VALUE, ..., USE.NAMES = TRUE) { FUN <- match.fun(FUN) if(!is.vector(X) || is.object(X)) X <- as.list(X) .Internal(vapply(X, FUN, FUN.VALUE, USE.NAMES)) } This is an implementor question. Basically, what happened to the '...' args in the call to the .Internal? cf lapply:, where the ... is passed. lapply <- function (X, FUN, ...)
2014 Dec 17
0
vapply definition question
...oesn't contain '...' in the final line ~/src/R-devel/src/library/base/R$ svn annotate lapply.R | grep Internal\(l 38631 ripley .Internal(lapply(X, FUN)) and that it's been there for a long time (I'd guess 'forever') ~/src/R-devel/src/library/base/R$ svn log -r38631 ------------------------------------------------------------------------ r38631 | ripley | 2006-07-17 14:30:55 -0700 (Mon, 17 Jul 2006) | 2 lines another attempt at a faster lapply ------------------------------------------------------------------------ so I guess you're looking at a modifie...