Open martinschmelzer opened 2 years ago
You might want to change seq(along = nodes) to seq(along.with = nodes). If options("warnPartialMatchArgs") == TRUE, this throws an unnecessary warning (at least with R 4.1.3+).
seq(along = nodes)
seq(along.with = nodes)
options("warnPartialMatchArgs") == TRUE
https://github.com/omegahat/XML/blob/a74ea7d74dc820c35e0b67a41447bd9ebde45de1/R/reflection.R#L63
You might want to change
seq(along = nodes)
toseq(along.with = nodes)
. Ifoptions("warnPartialMatchArgs") == TRUE
, this throws an unnecessary warning (at least with R 4.1.3+).https://github.com/omegahat/XML/blob/a74ea7d74dc820c35e0b67a41447bd9ebde45de1/R/reflection.R#L63