> Kurt Hornik
> on Mon, 15 Dec 2014 18:21:19 +0100 writes:
> Spencer Graves writes:
>> Hello, All: What would it take to make “iconv” portable?
>> I ask, because I want to convert accented characters to
>> vanilla ASCII, thereby converting, e.g., ‘Raúl’ to
>> “Ra
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 .In
On 12/16/2014 08:20 PM, Mick Jordan wrote:
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 hap