hi all,
there is a vectorinzing version of "[[<-" for "tclArray" class ?
TIA
cleber
#####
> library(tcltk); getS3method("[[<-",'tclArray')
function (x, ..., value)
{
name <- as.character(x)
i <- paste(..., sep = ",")
if (is.null(value))
.External(.C_RTcl_RemoveArrayElem, name, i)
else {
value <- as.tclObj(value)
.External(.C_RTcl_SetArrayElem, name, i, value)
}
x
}
<bytecode: 0x000000000e7ab608>
<environment: namespace:tcltk>
>
---
Este email foi escaneado pelo Avast antivĂrus.
https://www.avast.com/antivirus
______________________________________________
[email protected] mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.