armgong / rjulia

R package which integrating R and Julia
GNU General Public License v2.0
146 stars 23 forks source link

Use Vector{Any} in R_Julia_MD for R list? #31

Closed phaverty closed 8 years ago

phaverty commented 8 years ago

The code for converting an R list to a julia type is pretty complicated due to the current trouble of creating tuples from C. Perhaps an R list could be represented as Vector{Any} rather than as a tuple? That would be much simpler and allow the object to be used in the same way R uses lists.

armgong commented 8 years ago

convert to Vector{any} is better way than to a tuple, I will try it next week. thanks