Displaying 1 result from an estimated 1 matches for "stackit2".
Did you mean:
stackit1
2012 Feb 02
1
possibly Error in R version 2.12.1 (2010-12-16)
...s in c( stackData, ...))
{
sChain= paste( sChain, '"', sub( '"', '\\\\"', s), '"', sep, sep='')
}
write( sChain, fHandle, append=TRUE)
},
stackIt1 = function( ...)
{
testClass( stackData= c( stackData, ...))
},
stackIt2 = function( ...)
{
tmp= c( stackData, ...)
testClass( stackData= tmp)
},
getStack = function()
{
stackData
},
NULL
)
}
to1= testClass()
for( i in 4:2)
{
to1= to1$stackIt1( i)
}
print( all( rep( 2, 3) == to1$getStack())) # error!
to2= testClass()
for( i in 4:2)
{
to2=...