gregtour / duck-lang

The Duck Programming Language
http://www.ducklang.org
109 stars 13 forks source link

Improve internal data structures #30

Open gregtour opened 9 years ago

gregtour commented 9 years ago

Some of the data structures in use right now are not ideal for storage or performance. Currently the garbage collector operates using very large lists which are not sorted so access times are linear when they could be logarithmic or better.

Some work needs to be put in to bring all of the internal data structures up to par.