Hay una gran respuesta en el blog Luchando por los problemas
Esto se toma a partir de ahí, con modificaciones muy pequeñas.
USANDO LAS SIGUIENTES TRES FUNCIONES (Más una para permitir listas de diferentes tamaños)
'%=%' = function(l, r, ...) UseMethod('%=%')
'%=%.lbunch' = function(l, r, ...) {
Envir = as.environment(-1)
if (length(r) > length(l))
warning("RHS has more args than LHS. Only first", length(l), "used.")
if (length(l) > length(r)) {
warning("LHS has more args than RHS. RHS will be repeated.")
r <- extendToMatch(r, l)
}
for (II in 1:length(l)) {
do.call('<-', list(l[[II]], r[[II]]), envir=Envir)
}
}
extendToMatch <- function(source, destin) {
s <- length(source)
d <- length(destin)
if(d==1 && s>1 && !is.null(as.numeric(destin)))
d <- destin
dif <- d - s
if (dif > 0) {
source <- rep(source, ceiling(d/s))[1:d]
}
return (source)
}
g = function(...) {
List = as.list(substitute(list(...)))[-1L]
class(List) = 'lbunch'
return(List)
}
Luego para ejecutar:
Agrupe el lado izquierdo usando la nueva función g()
El lado derecho debe ser un vector o una lista Use el operador binario recién creado%=%
g(a, b, c) %=% list("hello", 123, list("apples, oranges"))
g(d, e, f) %=% 101:103
> a
[1] "hello"
> b
[1] 123
> c
[[1]]
[1] "apples, oranges"
> d
[1] 101
> e
[1] 102
> f
[1] 103
Ejemplo usando listas de diferentes tamaños:
Lado izquierdo más largo
g(x, y, z) %=% list("first", "second")
> x
[1] "first"
> y
[1] "second"
> z
[1] "first"
Lado derecho más largo
g(j, k) %=% list("first", "second", "third")
> j
[1] "first"
> k
[1] "second"
list($a, $b) = array(1, 2)
? ¡Eso estaría bien! +1.