-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
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
Question about Debug trait #393
Comments
I personally lean more toward gdb-style debugging than print-style debugging, which I think is what Debug is for. But you are right, there's no reason types like Addr shouldn't derive Debug. |
The Debug trait will also help when using scryer-prolog as a library. I will start the implementation of Debug trait for the data structures if it's OK. |
Yes, please do. |
ghost
mentioned this issue
Apr 26, 2020
Could be closed now then? |
ghost
closed this as completed
Apr 26, 2020
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why almost all data structures like
enum Addr
at line don't implement the traitDebug
?The text was updated successfully, but these errors were encountered: