Re: [Rd] Making iconv portable?

2014-12-16 Thread Martin Maechler
Kurt Hornik kurt.hor...@wu.ac.at 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

[Rd] vapply definition question

2014-12-16 Thread Mick Jordan
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

Re: [Rd] vapply definition question

2014-12-16 Thread Martin Morgan
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