danilopedraza / komodo

The Komodo programming language code repository
https://komodo-lang.org/
GNU General Public License v3.0
6 stars 0 forks source link

Set implementation #37

Closed danilopedraza closed 3 months ago

danilopedraza commented 3 months ago

Right now, sets are implemented as lists. I'm thinking of implementing them as HashSets. The Rust standard library has that data structure already. The main issue is that every Symstatic object must be hashable, which means that ASTNodes must be hashable.

danilopedraza commented 3 months ago

Done.