[kepler-dev] [Bug 3960] - RExpression2 - support arrayType(arrayType(....)) tokens
bugzilla-daemon at ecoinformatics.org
bugzilla-daemon at ecoinformatics.org
Mon Apr 13 16:01:29 PDT 2009
http://bugzilla.ecoinformatics.org/show_bug.cgi?id=3960
leinfelder at nceas.ucsb.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Comment #1 from leinfelder at nceas.ucsb.edu 2009-04-13 16:01 -------
can now handle arrayType(arrayType(...) so that the given expression ends up
looking like:
{"1", "b", "3"}
Notice that the list structure was dropped since there is only a single value
for each. When the one of the inner arrays has more than a single item, the
list structure is used:
{{1,2}, "b", {3}}
becomes
{{"1", "2"}, {"b"}, {"3"}}
And, yes, everything is converted to their string representation as noted in
another ticket.
More information about the Kepler-dev
mailing list