[kepler-dev] [Bug 4272] - RExpression cannot handle irregular Record tokens

bugzilla-daemon at ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Wed Jul 29 07:34:59 PDT 2009


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=4272


leinfelder at nceas.ucsb.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from leinfelder at nceas.ucsb.edu  2009-07-29 07:34 -------
We can now handle variable length record tokens.

For the RecordToken:
{a=1, b={2,3}}

We end up with this in the RExpression actor:

> `myInput` <- local({
+ `a` <- c(1)
+ `b` <- c(2, 3)
+ list(`a`,`b`)
+ })
> 
> myInput
[[1]]
[1] 1

[[2]]
[1] 2 3


More information about the Kepler-dev mailing list