We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ChickenClisp/source/orelang/Value.d
Line 39 in 815c874
This consumes too much memory, it's better to use union to store value for different types.
union
Each Lisp cell can only store one type information, you are wasting too much memory.
The text was updated successfully, but these errors were encountered:
Or do it in D's OOP way, by define class hierarchy:
https://github.com/zephyrfalcon/fairy-lisp/blob/master/source/types.d#L119
Sorry, something went wrong.
No branches or pull requests
ChickenClisp/source/orelang/Value.d
Line 39 in 815c874
This consumes too much memory, it's better to use
union
to store value for different types.Each Lisp cell can only store one type information, you are wasting too much memory.
The text was updated successfully, but these errors were encountered: