Skip to content
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

Implement Clone and Debug for SccGraph #148

Open
NotLeonian opened this issue Feb 25, 2025 · 2 comments · May be fixed by #161
Open

Implement Clone and Debug for SccGraph #148

NotLeonian opened this issue Feb 25, 2025 · 2 comments · May be fixed by #161

Comments

@NotLeonian
Copy link
Contributor

Implement the Clone and Debug traits for SccGraph.
Note that this requires implementing Clone and Debug for internal_scc::SccGraph #147 .

The Clone trait can be derived.
For the Debug trait, discussion is needed regarding the output format.
I think that either of the following approaches would be appropriate:

  1. Derive it.
  2. Since deriving would result in redundant output like SccGraph { internal: SccGraph {, format it the same way as the fmt function in internal_scc::SccGraph.
@NotLeonian
Copy link
Contributor Author

Do you have any opinions on which of the two output formats I proposed is preferable, or whether another format would be better?
I personally think the latter one I proposed is the better option.

@NotLeonian
Copy link
Contributor Author

I reconsidered and realized that arbitrarily adopting a different output from derive is not ideal.
I think derive is the better choice.

@NotLeonian NotLeonian linked a pull request Apr 4, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant